結果

問題 No.2242 Cities and Teleporters
ユーザー rlangevinrlangevin
提出日時 2023-11-26 12:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,746 ms / 3,000 ms
コード長 1,157 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 177,128 KB
最終ジャッジ日時 2024-09-26 11:38:43
合計ジャッジ時間 30,751 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,144 KB
testcase_01 AC 47 ms
54,144 KB
testcase_02 AC 52 ms
54,144 KB
testcase_03 AC 47 ms
54,272 KB
testcase_04 AC 46 ms
53,888 KB
testcase_05 AC 1,462 ms
167,216 KB
testcase_06 AC 812 ms
175,824 KB
testcase_07 AC 1,447 ms
177,128 KB
testcase_08 AC 1,746 ms
175,384 KB
testcase_09 AC 1,634 ms
175,476 KB
testcase_10 AC 1,150 ms
175,956 KB
testcase_11 AC 1,067 ms
153,044 KB
testcase_12 AC 1,067 ms
153,172 KB
testcase_13 AC 1,150 ms
152,780 KB
testcase_14 AC 1,231 ms
152,912 KB
testcase_15 AC 1,192 ms
153,040 KB
testcase_16 AC 1,269 ms
152,924 KB
testcase_17 AC 1,450 ms
152,900 KB
testcase_18 AC 1,148 ms
152,084 KB
testcase_19 AC 1,074 ms
158,328 KB
testcase_20 AC 1,132 ms
149,472 KB
testcase_21 AC 1,137 ms
150,488 KB
testcase_22 AC 1,046 ms
164,788 KB
testcase_23 AC 1,220 ms
153,032 KB
testcase_24 AC 1,203 ms
152,520 KB
testcase_25 AC 1,010 ms
153,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
H = list(map(int, input().split()))
T = list(map(int, input().split()))
HT = []
for i in range(N):
    HT.append((-T[i], H[i], i))
    
HT.sort()
M = 18
dp = [[-1] * N for i in range(M)]

from bisect import *
from collections import *
inf = 10 ** 18
minv = defaultdict(lambda : inf)
L = [-inf]
for t, h, i in HT:
    h = -h
    ind = bisect_left(L, t)
    if ind != len(L):
        dp[0][i] = minv[L[ind]]  
    if h > L[-1]:
        L.append(h)
        minv[h] = i
     
for i in range(1, M):
    for j in range(N):
        if dp[i-1][j] == -1:
            continue
        dp[i][j] = dp[i-1][dp[i-1][j]]
  
Q = int(input())
for _ in range(Q):
    A, B = map(int, input().split())
    A, B = A - 1, B - 1
    if H[B] <= T[A]:
        print(1)
        continue
    now = A
    ans = 1
    for i in range(M-1, -1, -1):
        nex = dp[i][now]
        if nex == -1:
            continue
        if T[nex] < H[B]:
            ans += 1 << i
            now = nex
    now = dp[0][now]
    if now == -1:
        print(-1)
    elif T[now] >= H[B]:
        print(ans + 1)
    else:
        print(-1)
        
0