結果
問題 | No.1170 Never Want to Walk |
ユーザー | marroncastle |
提出日時 | 2020-08-14 22:37:01 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,478 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 32,992 KB |
最終ジャッジ日時 | 2024-10-10 15:57:51 |
合計ジャッジ時間 | 9,427 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,136 KB |
testcase_01 | AC | 31 ms
11,008 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | AC | 28 ms
11,008 KB |
testcase_04 | WA | - |
testcase_05 | AC | 28 ms
11,136 KB |
testcase_06 | AC | 30 ms
11,008 KB |
testcase_07 | AC | 30 ms
11,008 KB |
testcase_08 | AC | 29 ms
11,136 KB |
testcase_09 | AC | 28 ms
11,008 KB |
testcase_10 | AC | 28 ms
11,008 KB |
testcase_11 | AC | 28 ms
11,136 KB |
testcase_12 | WA | - |
testcase_13 | AC | 31 ms
11,008 KB |
testcase_14 | AC | 31 ms
11,008 KB |
testcase_15 | AC | 32 ms
11,136 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 30 ms
11,008 KB |
testcase_19 | AC | 30 ms
11,008 KB |
testcase_20 | AC | 31 ms
11,136 KB |
testcase_21 | WA | - |
testcase_22 | AC | 29 ms
11,008 KB |
testcase_23 | AC | 31 ms
11,008 KB |
testcase_24 | AC | 31 ms
11,136 KB |
testcase_25 | AC | 33 ms
11,136 KB |
testcase_26 | AC | 33 ms
11,136 KB |
testcase_27 | AC | 639 ms
32,088 KB |
testcase_28 | AC | 636 ms
31,800 KB |
testcase_29 | AC | 632 ms
32,552 KB |
testcase_30 | AC | 643 ms
32,456 KB |
testcase_31 | AC | 625 ms
31,988 KB |
testcase_32 | WA | - |
testcase_33 | AC | 569 ms
31,820 KB |
testcase_34 | WA | - |
testcase_35 | AC | 457 ms
32,480 KB |
testcase_36 | AC | 438 ms
31,888 KB |
testcase_37 | AC | 395 ms
32,384 KB |
testcase_38 | AC | 418 ms
32,992 KB |
ソースコード
class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(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 same(self, x, y): return self.find(x) == self.find(y) def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def num_roots(self): return len([i for i, x in enumerate(self.parents) if x < 0]) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def num_members(self,x): return abs(self.parents[self.find(x)]) def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) from bisect import * def uni(i,A,B): ind = bisect_left(X,X[i]+A) while ind<N and X[ind]-X[i]<=B: uf.union(i,ind) ind += 1 return ind-1 N, A, B = map(int, input().split()) X = list(map(int, input().split())) uf = UnionFind(N) ind = uni(0,A,B) for i in range(1,N): if X[i]+A>X[ind]: ind = uni(i,A,B) else: uf.union(i,ind) while ind+1<N and X[ind+1]<=X[i]+B: ind += 1 uf.union(i,ind) if ind==N-1: break for i in range(N): print(uf.num_members(i))