結果
問題 | No.1170 Never Want to Walk |
ユーザー | nishigake |
提出日時 | 2022-05-30 00:27:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,292 KB |
実行使用メモリ | 102,348 KB |
最終ジャッジ日時 | 2024-09-21 00:44:47 |
合計ジャッジ時間 | 6,704 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,828 KB |
testcase_01 | AC | 38 ms
52,760 KB |
testcase_02 | AC | 38 ms
53,820 KB |
testcase_03 | AC | 37 ms
52,884 KB |
testcase_04 | AC | 37 ms
52,836 KB |
testcase_05 | AC | 37 ms
53,092 KB |
testcase_06 | AC | 38 ms
53,324 KB |
testcase_07 | AC | 38 ms
53,716 KB |
testcase_08 | AC | 38 ms
53,200 KB |
testcase_09 | AC | 38 ms
52,740 KB |
testcase_10 | AC | 37 ms
53,884 KB |
testcase_11 | AC | 37 ms
52,884 KB |
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 | AC | 65 ms
71,948 KB |
testcase_25 | AC | 64 ms
72,348 KB |
testcase_26 | AC | 65 ms
72,468 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 248 ms
101,908 KB |
testcase_33 | AC | 253 ms
101,240 KB |
testcase_34 | AC | 253 ms
101,780 KB |
testcase_35 | AC | 261 ms
102,144 KB |
testcase_36 | AC | 254 ms
101,428 KB |
testcase_37 | WA | - |
testcase_38 | AC | 255 ms
102,016 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(r-1, l-1, -1): if uf.issame(i,j): break uf.unite(i,j) for i in range(N): print(uf.size(i))