結果
問題 | No.2242 Cities and Teleporters |
ユーザー | shotoyoo |
提出日時 | 2023-03-10 22:58:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,903 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 81,764 KB |
実行使用メモリ | 163,432 KB |
最終ジャッジ日時 | 2024-09-18 05:08:26 |
合計ジャッジ時間 | 20,294 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
56,216 KB |
testcase_01 | AC | 41 ms
54,988 KB |
testcase_02 | AC | 39 ms
54,952 KB |
testcase_03 | AC | 39 ms
54,956 KB |
testcase_04 | WA | - |
testcase_05 | AC | 877 ms
163,432 KB |
testcase_06 | AC | 731 ms
154,788 KB |
testcase_07 | AC | 979 ms
160,276 KB |
testcase_08 | AC | 1,077 ms
160,160 KB |
testcase_09 | AC | 1,046 ms
160,672 KB |
testcase_10 | AC | 661 ms
160,440 KB |
testcase_11 | AC | 799 ms
160,944 KB |
testcase_12 | AC | 798 ms
160,944 KB |
testcase_13 | AC | 846 ms
160,920 KB |
testcase_14 | AC | 958 ms
160,436 KB |
testcase_15 | AC | 810 ms
160,172 KB |
testcase_16 | AC | 881 ms
160,144 KB |
testcase_17 | AC | 1,084 ms
160,168 KB |
testcase_18 | AC | 670 ms
158,388 KB |
testcase_19 | AC | 655 ms
159,792 KB |
testcase_20 | AC | 866 ms
158,468 KB |
testcase_21 | AC | 808 ms
157,716 KB |
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 cum = ns[:] for i in range(1,n): cum[i] = max(cum[i], cum[i-1]) dns = [cum] 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 = 1 cur = ns[a] if cur==-1 or dns[-1][cur]==-1 or dns[-1][cur]<b: res = -1 elif cur>=b: res = 1 else: 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: if dns[0][cur]>=b: res += 1 else: res = -1 print(res)