結果

問題 No.2242 Cities and Teleporters
ユーザー 👑 rin204rin204
提出日時 2024-04-28 14:55:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,097 ms / 3,000 ms
コード長 934 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 245,700 KB
最終ジャッジ日時 2024-11-17 07:39:55
合計ジャッジ時間 23,952 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 712 ms
218,656 KB
testcase_06 AC 633 ms
202,824 KB
testcase_07 AC 686 ms
195,260 KB
testcase_08 AC 931 ms
198,216 KB
testcase_09 AC 763 ms
195,008 KB
testcase_10 AC 728 ms
231,880 KB
testcase_11 AC 869 ms
234,312 KB
testcase_12 AC 766 ms
233,928 KB
testcase_13 AC 856 ms
231,876 KB
testcase_14 AC 937 ms
234,424 KB
testcase_15 AC 795 ms
234,820 KB
testcase_16 AC 1,002 ms
234,812 KB
testcase_17 AC 1,097 ms
230,860 KB
testcase_18 AC 803 ms
236,820 KB
testcase_19 AC 947 ms
238,520 KB
testcase_20 AC 778 ms
225,168 KB
testcase_21 AC 776 ms
245,700 KB
testcase_22 AC 919 ms
245,380 KB
testcase_23 AC 948 ms
231,876 KB
testcase_24 AC 963 ms
231,492 KB
testcase_25 AC 955 ms
231,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

n = int(input())
H = list(map(int, input().split()))
T = list(map(int, input().split()))
X = H + T
X = sorted(set(X))
dic = {X[i]: i for i in range(len(X))}
H = [dic[h] for h in H]
T = [dic[t] for t in T]
le = len(X)

m = 20
nex = [[i for i in range(le)] for _ in range(m)]
for h, t in zip(H, T):
    nex[0][h] = max(nex[0][h], t)

for i in range(1, le):
    nex[0][i] = max(nex[0][i], nex[0][i - 1])

for i in range(1, m):
    for j in range(le):
        nex[i][j] = nex[i - 1][nex[i - 1][j]]

Q = int(input())
for _ in range(Q):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    if T[a] >= H[b]:
        print(1)
        continue
    ans = 1
    t = T[a]
    for i in range(m - 1, -1, -1):
        nt = nex[i][t]
        if nt < H[b]:
            t = nt
            ans += 1 << i
    ans += 1
    nt = nex[0][t]

    if nt >= H[b]:
        print(ans)
    else:
        print(-1)
0