結果

問題 No.2242 Cities and Teleporters
ユーザー ニックネームニックネーム
提出日時 2023-03-10 22:40:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 256,856 KB
最終ジャッジ日時 2024-09-18 04:48:40
合計ジャッジ時間 28,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,488 KB
testcase_01 AC 37 ms
53,044 KB
testcase_02 AC 38 ms
52,716 KB
testcase_03 AC 39 ms
52,464 KB
testcase_04 WA -
testcase_05 AC 1,221 ms
217,380 KB
testcase_06 AC 711 ms
220,392 KB
testcase_07 AC 1,249 ms
213,760 KB
testcase_08 AC 1,400 ms
215,648 KB
testcase_09 AC 1,213 ms
214,176 KB
testcase_10 AC 1,160 ms
250,772 KB
testcase_11 WA -
testcase_12 AC 1,348 ms
251,204 KB
testcase_13 AC 1,354 ms
250,872 KB
testcase_14 AC 1,398 ms
251,820 KB
testcase_15 AC 1,500 ms
252,108 KB
testcase_16 AC 1,454 ms
252,060 KB
testcase_17 AC 1,491 ms
249,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
input = stdin.readline
n = int(input()); l = n.bit_length()
h = list(map(int,input().split()))
t = list(map(int,input().split()))
itov = sorted(set(h)|set(t)); m = len(itov)
vtoi = {v:i for i,v in enumerate(itov)}
for i in range(n): h[i] = vtoi[h[i]]; t[i] = vtoi[t[i]]
tele = [0]*m; ht = [(u,v) for u,v in zip(h,t)]
for u,v in sorted(ht): tele[u] = max(tele[u],v)
for i in range(m-1): tele[i+1] = max(tele[i+1],tele[i])
doub = [tele]+[[0]*m for _ in range(l)]
for i in range(l):
    for j in range(m): doub[i+1][j] = doub[i][doub[i][j]]
for _ in range(int(input())):
    a,b = map(int,input().split())
    x = t[a-1]; y = h[b-1]; ans = 1
    if y>doub[l][x]: print(-1); break
    for i in range(l-1,-1,-1):
        if doub[i][x]<y: x = doub[i][x]; ans += 2**i
    print(ans+(x<y))
0