結果
問題 | No.1170 Never Want to Walk |
ユーザー | nishigake |
提出日時 | 2022-05-30 00:48:54 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 572 ms / 2,000 ms |
コード長 | 1,403 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 103,036 KB |
最終ジャッジ日時 | 2024-09-21 00:45:06 |
合計ジャッジ時間 | 9,102 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,608 KB |
testcase_01 | AC | 38 ms
52,864 KB |
testcase_02 | AC | 40 ms
52,480 KB |
testcase_03 | AC | 37 ms
52,480 KB |
testcase_04 | AC | 39 ms
52,864 KB |
testcase_05 | AC | 39 ms
52,480 KB |
testcase_06 | AC | 38 ms
52,736 KB |
testcase_07 | AC | 37 ms
52,736 KB |
testcase_08 | AC | 39 ms
52,608 KB |
testcase_09 | AC | 38 ms
52,608 KB |
testcase_10 | AC | 38 ms
52,352 KB |
testcase_11 | AC | 37 ms
52,224 KB |
testcase_12 | AC | 74 ms
75,444 KB |
testcase_13 | AC | 77 ms
75,884 KB |
testcase_14 | AC | 77 ms
75,440 KB |
testcase_15 | AC | 74 ms
75,700 KB |
testcase_16 | AC | 77 ms
75,620 KB |
testcase_17 | AC | 77 ms
75,520 KB |
testcase_18 | AC | 68 ms
73,592 KB |
testcase_19 | AC | 77 ms
75,496 KB |
testcase_20 | AC | 78 ms
75,392 KB |
testcase_21 | AC | 80 ms
75,648 KB |
testcase_22 | AC | 76 ms
75,264 KB |
testcase_23 | AC | 76 ms
75,648 KB |
testcase_24 | AC | 75 ms
75,776 KB |
testcase_25 | AC | 76 ms
75,748 KB |
testcase_26 | AC | 76 ms
75,924 KB |
testcase_27 | AC | 448 ms
102,676 KB |
testcase_28 | AC | 518 ms
101,796 KB |
testcase_29 | AC | 572 ms
102,644 KB |
testcase_30 | AC | 461 ms
102,732 KB |
testcase_31 | AC | 468 ms
103,036 KB |
testcase_32 | AC | 350 ms
102,220 KB |
testcase_33 | AC | 404 ms
102,356 KB |
testcase_34 | AC | 407 ms
102,016 KB |
testcase_35 | AC | 360 ms
102,760 KB |
testcase_36 | AC | 390 ms
101,848 KB |
testcase_37 | AC | 390 ms
101,760 KB |
testcase_38 | AC | 381 ms
102,272 KB |
ソースコード
from bisect import bisect_left, bisect_right class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def root(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.root(self.parents[x]) return self.parents[x] def unite(self, x, y): x = self.root(x) y = self.root(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.root(x)] def issame(self, x, y): return self.root(x) == self.root(y) N,A,B = list(map(int,input().split())) X = list(map(int,input().split())) uf = UnionFind(N) for i in range(N): l = bisect_left(X, X[i]-B) r = bisect_right(X, X[i]-A) for j in range(l, r): if uf.issame(i, j): break uf.unite(i, j) for j in range(r-1, l-1, -1): if uf.issame(i, j): break uf.unite(i, j) l = bisect_left(X, X[i]+A) r = bisect_right(X, X[i]+B) for j in range(l, r): if uf.issame(i, j): break uf.unite(i, j) for j in range(r-1, l-1, -1): if uf.issame(i, j): break uf.unite(i, j) for i in range(N): print(uf.size(i))