結果
問題 | No.2242 Cities and Teleporters |
ユーザー | chro_96 |
提出日時 | 2023-03-10 22:47:37 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 2,228 ms / 3,000 ms |
コード長 | 2,742 bytes |
コンパイル時間 | 310 ms |
コンパイル使用メモリ | 32,384 KB |
実行使用メモリ | 34,688 KB |
最終ジャッジ日時 | 2024-09-18 04:54:25 |
合計ジャッジ時間 | 33,326 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
33,112 KB |
testcase_01 | AC | 10 ms
33,036 KB |
testcase_02 | AC | 10 ms
33,072 KB |
testcase_03 | AC | 9 ms
33,024 KB |
testcase_04 | AC | 9 ms
33,108 KB |
testcase_05 | AC | 2,002 ms
34,452 KB |
testcase_06 | AC | 1,955 ms
33,664 KB |
testcase_07 | AC | 1,937 ms
34,404 KB |
testcase_08 | AC | 2,228 ms
34,560 KB |
testcase_09 | AC | 1,466 ms
34,688 KB |
testcase_10 | AC | 971 ms
34,360 KB |
testcase_11 | AC | 976 ms
34,432 KB |
testcase_12 | AC | 991 ms
34,688 KB |
testcase_13 | AC | 1,429 ms
34,432 KB |
testcase_14 | AC | 2,091 ms
34,560 KB |
testcase_15 | AC | 1,397 ms
34,432 KB |
testcase_16 | AC | 1,378 ms
34,432 KB |
testcase_17 | AC | 2,060 ms
34,560 KB |
testcase_18 | AC | 1,351 ms
34,544 KB |
testcase_19 | AC | 1,134 ms
34,396 KB |
testcase_20 | AC | 1,262 ms
34,280 KB |
testcase_21 | AC | 1,116 ms
34,304 KB |
testcase_22 | AC | 1,083 ms
34,304 KB |
testcase_23 | AC | 1,097 ms
34,632 KB |
testcase_24 | AC | 1,102 ms
34,540 KB |
testcase_25 | AC | 1,082 ms
34,560 KB |
ソースコード
#include <stdio.h> #include <stdlib.h> int cmp_int (const void *ap, const void *bp) { int a = *(int *)ap; int b = *(int *)bp; if (a < b) { return -1; } if (a > b) { return 1; } return 0; } int main () { int n = 0; int h[200000][2] = {}; int t[200000] = {}; int q = 0; int a = 0; int b = 0; int res = 0; int max[18][200000] = {}; int org_h[200000] = {}; int max_idx[18][200000] = {}; res = scanf("%d", &n); for (int i = 0; i < n; i++) { res = scanf("%d", h[i]); h[i][1] = i; org_h[i] = h[i][0]; } for (int i = 0; i < n; i++) { res = scanf("%d", t+i); } qsort(h, n, sizeof(int)*2, cmp_int); max[0][0] = t[h[0][1]]; for (int j = 1; j < n; j++) { max[0][j] = t[h[j][1]]; if (max[0][j] < max[0][j-1]) { max[0][j] = max[0][j-1]; } } for (int i = 1; i < 18; i++) { for (int j = 0; j < n; j++) { int idx[2] = { -1, n }; while (idx[1]-idx[0] > 1) { int nxt = (idx[0]+idx[1])/2; if (h[nxt][0] <= max[i-1][j]) { idx[0] = nxt; } else { idx[1] = nxt; } } if (idx[0] < 0) { max[i][j] = max[i-1][j]; } else { max[i][j] = max[i-1][idx[0]]; } if (max[i][j] < max[i-1][j]) { max[i][j] = max[i-1][j]; } if (j > 0 && max[i][j] < max[i][j-1]) { max[i][j] = max[i][j-1]; } } } for (int i = 0; i < 18; i++) { for (int j = 0; j < n; j++) { int idx[2] = { -1, n }; while (idx[1]-idx[0] > 1) { int nxt = (idx[0]+idx[1])/2; if (h[nxt][0] <= max[i][j]) { idx[0] = nxt; } else { idx[1] = nxt; } } max_idx[i][j] = idx[0]; } } res = scanf("%d", &q); while (q > 0) { int ans[2] = { 0, n+1 }; res = scanf("%d", &a); res = scanf("%d", &b); a--; b--; while (ans[1]-ans[0] > 1) { int nxt = (ans[0]+ans[1])/2; int cnt = 0; int tmp = 0; int org_nxt = nxt; int idx = -1; int r = n; tmp = t[a]; while (r-idx > 1) { int nidx = (idx+r)/2; if (h[nidx][0] <= tmp) { idx = nidx; } else { r = nidx; } } nxt--; while (nxt > 0) { if (nxt%2 == 1) { if (idx >= 0 && max[cnt][idx] > tmp) { tmp = max[cnt][idx]; idx = max_idx[cnt][idx]; } } nxt /= 2; cnt++; } if (org_h[b] <= tmp) { ans[1] = org_nxt; } else { ans[0] = org_nxt; } } if (ans[1] > n) { printf("-1\n"); } else { printf("%d\n", ans[1]); } q--; } return 0; }