結果
問題 | No.1170 Never Want to Walk |
ユーザー | shotoyoo |
提出日時 | 2020-08-14 21:58:56 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,593 bytes |
コンパイル時間 | 357 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 117,412 KB |
最終ジャッジ日時 | 2024-10-10 15:11:50 |
合計ジャッジ時間 | 9,151 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,856 KB |
testcase_01 | AC | 39 ms
52,736 KB |
testcase_02 | AC | 37 ms
52,992 KB |
testcase_03 | AC | 37 ms
52,608 KB |
testcase_04 | AC | 38 ms
52,480 KB |
testcase_05 | AC | 37 ms
52,992 KB |
testcase_06 | AC | 37 ms
52,464 KB |
testcase_07 | AC | 37 ms
52,992 KB |
testcase_08 | AC | 37 ms
52,864 KB |
testcase_09 | AC | 37 ms
52,096 KB |
testcase_10 | AC | 37 ms
52,744 KB |
testcase_11 | AC | 37 ms
52,736 KB |
testcase_12 | AC | 53 ms
63,488 KB |
testcase_13 | AC | 65 ms
70,272 KB |
testcase_14 | AC | 68 ms
72,448 KB |
testcase_15 | AC | 52 ms
63,488 KB |
testcase_16 | AC | 56 ms
65,024 KB |
testcase_17 | AC | 69 ms
72,576 KB |
testcase_18 | AC | 51 ms
62,464 KB |
testcase_19 | AC | 55 ms
64,640 KB |
testcase_20 | AC | 68 ms
71,936 KB |
testcase_21 | AC | 54 ms
63,616 KB |
testcase_22 | AC | 214 ms
76,160 KB |
testcase_23 | AC | 113 ms
76,160 KB |
testcase_24 | AC | 219 ms
76,256 KB |
testcase_25 | AC | 219 ms
76,404 KB |
testcase_26 | AC | 174 ms
76,372 KB |
testcase_27 | AC | 435 ms
112,688 KB |
testcase_28 | AC | 453 ms
112,436 KB |
testcase_29 | AC | 396 ms
113,112 KB |
testcase_30 | AC | 459 ms
112,236 KB |
testcase_31 | AC | 442 ms
112,344 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(max(1000, 10**9)) write = lambda x: sys.stdout.write(x+"\n") n,a,b = list(map(int, input().split())) xs = list(map(int, input().split())) ls = [None]*n rs = [None]*n j = 0 for i in range(n): x = xs[i] while j+1<n and xs[j]<x+a: j += 1 if x+a<=xs[j]<=x+b: ls[i] = j j = 0 for i in range(n): x = xs[i] while j+1<n and xs[j+1]<=x+b: j += 1 if x+a<=xs[j]<=x+b: rs[i] = j class UnionFindTree: def __init__(self, n): self.n = n self.parent = list(range(n)) self.size = [1] * n def root(self, i): inter = set() while self.parent[i]!=i: inter.add(i) i = self.parent[i] r = i for i in inter: self.parent[i] = r return r def connect(self, i, j): if i==j: return ri = self.root(i) rj = self.root(j) if ri==rj: return if self.size[ri]<self.size[rj]: self.parent[ri] = rj self.size[rj] += self.size[ri] else: self.parent[rj] = ri self.size[ri] += self.size[rj] uf = UnionFindTree(n) pl, pr = -1, -1 for i, (l,r) in enumerate(zip(ls,rs)): if l is not None and l<=pr: uf.connect(i, i-1) for j in range(pr, r+1): uf.connect(i, j) elif l is not None: for j in range(l, r+1): uf.connect(i, j) else: pass for i in range(n): print(uf.size[uf.root(i)])