結果
問題 | No.1170 Never Want to Walk |
ユーザー | aqua_tenhou |
提出日時 | 2020-08-14 21:54:11 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,661 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 32,720 KB |
最終ジャッジ日時 | 2024-10-10 15:05:14 |
合計ジャッジ時間 | 14,155 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 30 ms
10,880 KB |
testcase_02 | AC | 31 ms
10,880 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | AC | 30 ms
11,008 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | AC | 31 ms
10,880 KB |
testcase_07 | AC | 31 ms
10,880 KB |
testcase_08 | AC | 31 ms
10,752 KB |
testcase_09 | AC | 30 ms
10,880 KB |
testcase_10 | AC | 31 ms
10,880 KB |
testcase_11 | AC | 30 ms
10,880 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 | AC | 35 ms
11,008 KB |
testcase_23 | AC | 34 ms
11,008 KB |
testcase_24 | AC | 35 ms
10,880 KB |
testcase_25 | AC | 35 ms
11,008 KB |
testcase_26 | AC | 36 ms
11,008 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 882 ms
31,888 KB |
testcase_33 | AC | 920 ms
31,812 KB |
testcase_34 | AC | 911 ms
32,436 KB |
testcase_35 | AC | 921 ms
32,380 KB |
testcase_36 | AC | 926 ms
31,876 KB |
testcase_37 | AC | 878 ms
32,120 KB |
testcase_38 | AC | 926 ms
32,720 KB |
ソースコード
#UnionFind 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 size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): return {r: self.members(r) for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) import bisect n,a,b = map(int,input().split()) x = list(map(int,input().split())) uf = UnionFind(n+1) for i in range(n): A = bisect.bisect_left(x,x[i]+a) B = bisect.bisect_left(x,x[i]+b) for j in range(A,B+1): if i == j: pass if j >= n: break if uf.same(i,j): break else: if a <= abs(x[i]-x[j]) <= b: uf.union(i,j) for i in range(n): print(uf.size(i))