結果
問題 | No.2242 Cities and Teleporters |
ユーザー | shobonvip |
提出日時 | 2023-03-08 06:46:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 889 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 185,780 KB |
最終ジャッジ日時 | 2024-09-18 03:27:53 |
合計ジャッジ時間 | 30,587 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,332 KB |
testcase_01 | AC | 37 ms
52,224 KB |
testcase_02 | AC | 37 ms
52,352 KB |
testcase_03 | AC | 35 ms
51,968 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,263 ms
164,828 KB |
testcase_06 | AC | 1,462 ms
183,884 KB |
testcase_07 | AC | 1,387 ms
185,196 KB |
testcase_08 | AC | 1,508 ms
185,288 KB |
testcase_09 | AC | 1,493 ms
185,452 KB |
testcase_10 | AC | 892 ms
185,752 KB |
testcase_11 | AC | 1,111 ms
185,408 KB |
testcase_12 | AC | 1,160 ms
185,392 KB |
testcase_13 | AC | 1,170 ms
185,396 KB |
testcase_14 | AC | 1,527 ms
185,420 KB |
testcase_15 | AC | 1,208 ms
185,780 KB |
testcase_16 | AC | 1,288 ms
185,448 KB |
testcase_17 | AC | 1,777 ms
185,140 KB |
testcase_18 | AC | 1,118 ms
184,992 KB |
testcase_19 | AC | 1,325 ms
184,668 KB |
testcase_20 | AC | 1,309 ms
182,840 KB |
testcase_21 | AC | 1,185 ms
183,560 KB |
testcase_22 | AC | 1,335 ms
182,604 KB |
testcase_23 | AC | 1,291 ms
185,056 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import bisect n = int(input()) h = list(map(int,input().split())) t = list(map(int,input().split())) g = [(h[i] << 31) + (1 << 30) - t[i] for i in range(n)] g.sort() hs = [g[i] >> 31 for i in range(n)] ts = [(1 << 30) - (g[i] & ((1 << 31) - 1)) for i in range(n)] dp = [[0] * n for i in range(30)] tmp = 0 for i in range(n): tmp = max(tmp, ts[i]) dp[0][i] = bisect.bisect_right(hs, tmp) - 1 for i in range(29): for j in range(n): if dp[i][j] >= 0: dp[i+1][j] = dp[i][dp[i][j]] else: dp[i+1][j] = -1 #print(dp) q = int(input()) for i in range(q): a, b = map(int,input().split()) a -= 1 b -= 1 f = 1 r = bisect.bisect_right(hs, t[a]) - 1 if r == -1: print(-1) continue if hs[r] >= h[b]: print(1) continue for j in range(29,-1,-1): if dp[j][r] >= 0 and hs[dp[j][r]] < h[b]: f += 2 ** j r = dp[j][r] if f >= n + 1: print(-1) else: print(f + 1)