Submission #73588713
Source Code Expand
Copy
#include <stdio.h>int N;int A[114514];int main(void) {int i, j;if (scanf("%d", &N) != 1) return 1;for (i = 1; i <= N; i++) {if (scanf("%d", &A[i]) != 1) return 1;}for (i = 1; i <= N; i++) {int ans = -1;for (j = i - 1; j > 0; j--) {if (A[j] > A[i]) {ans = j;break;}}printf("%d\n", ans);}
#include <stdio.h>
int N;
int A[114514];
int main(void) {
int i, j;
if (scanf("%d", &N) != 1) return 1;
for (i = 1; i <= N; i++) {
if (scanf("%d", &A[i]) != 1) return 1;
}
for (i = 1; i <= N; i++) {
int ans = -1;
for (j = i - 1; j > 0; j--) {
if (A[j] > A[i]) {
ans = j;
break;
}
}
printf("%d\n", ans);
}
return 0;
}
/*
点set、範囲maxのセグメント木で二分探索すればよさそうだけど、
制約が小さいので全探索
*/
Submission Info
| Submission Time | |
|---|---|
| Task | B - Nearest Taller |
| User | mikecat |
| Language | C23 (GCC 14.2.0) |
| Score | 200 |
| Code Size | 511 Byte |
| Status | AC |
| Exec Time | 0 ms |
| Memory | 1716 KiB |
Judge Result
| Set Name | Sample | All | ||||
|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 200 / 200 | ||||
| Status |
|
|
| Set Name | Test Cases |
|---|---|
| Sample | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt |
| All | 00_sample_00.txt, 00_sample_01.txt, 00_sample_02.txt, 01_random_00.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 01_random_07.txt, 01_random_08.txt, 01_random_09.txt, 01_random_10.txt, 01_random_11.txt, 01_random_12.txt, 01_random_13.txt, 01_random_14.txt |
| Case Name | Status | Exec Time | Memory |
|---|---|---|---|
| 00_sample_00.txt | AC | 0 ms | 1676 KiB |
| 00_sample_01.txt | AC | 0 ms | 1676 KiB |
| 00_sample_02.txt | AC | 0 ms | 1588 KiB |
| 01_random_00.txt | AC | 0 ms | 1508 KiB |
| 01_random_01.txt | AC | 0 ms | 1600 KiB |
| 01_random_02.txt | AC | 0 ms | 1640 KiB |
| 01_random_03.txt | AC | 0 ms | 1600 KiB |
| 01_random_04.txt | AC | 0 ms | 1668 KiB |
| 01_random_05.txt | AC | 0 ms | 1708 KiB |
| 01_random_06.txt | AC | 0 ms | 1508 KiB |
| 01_random_07.txt | AC | 0 ms | 1676 KiB |
| 01_random_08.txt | AC | 0 ms | 1676 KiB |
| 01_random_09.txt | AC | 0 ms | 1512 KiB |
| 01_random_10.txt | AC | 0 ms | 1708 KiB |
| 01_random_11.txt | AC | 0 ms | 1628 KiB |
| 01_random_12.txt | AC | 0 ms | 1716 KiB |
| 01_random_13.txt | AC | 0 ms | 1536 KiB |
| 01_random_14.txt | AC | 0 ms | 1508 KiB |