結果
問題 | No.2242 Cities and Teleporters |
ユーザー | shotoyoo |
提出日時 | 2023-03-10 22:16:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,685 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 82,564 KB |
実行使用メモリ | 162,800 KB |
最終ジャッジ日時 | 2024-09-18 04:27:54 |
合計ジャッジ時間 | 22,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
55,288 KB |
testcase_01 | AC | 40 ms
54,868 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1,038 ms
158,688 KB |
testcase_09 | AC | 906 ms
158,856 KB |
testcase_10 | AC | 642 ms
158,952 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import sys, random input = lambda : sys.stdin.readline().rstrip() write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x)) debug = lambda x: sys.stderr.write(x+"\n") YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18 LI = lambda : list(map(int, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()] def debug(_l_): for s in _l_.split(): print(f"{s}={eval(s)}", end=" ") print() def dlist(*l, fill=0): if len(l)==1: return [fill]*l[0] ll = l[1:] return [dlist(*ll, fill=fill) for _ in range(l[0])] n = int(input()) h = list(map(int, input().split())) t = LI() index = list(range(n)) index.sort(key=lambda i: h[i]) pos = [0]*n for i in range(n): pos[index[i]] = i h = [h[ind] for ind in index] t = [t[ind] for ind in index] vs = [0]*n ns = [-1]*n from bisect import bisect_right as br for i in range(n): v = br(h, t[i]) vs[i] = v ns[i] = v-1 dns = [ns] for i in range(30): p = dns[-1] l = [-1]*n for j in range(n): if p[j]==-1: l[j] = -1 else: l[j] = max(p[j], p[p[j]]) dns.append(l) q = II() for _ in range(q): a,b = LI() a -= 1 b -= 1 # print(a,b,pos[a],pos[b]) a = pos[a] b = pos[b] res = 0 cur = a for i in range(30)[::-1]: if dns[i][cur]>=b: continue elif dns[i][cur]!=-1: res += (1<<i) cur = dns[i][cur] else: res = -1 break else: # print(a,cur,b) if dns[0][cur]==b: res += 1 else: res = -1 print(res)