結果
問題 | No.1170 Never Want to Walk |
ユーザー | rei60 |
提出日時 | 2020-08-22 11:56:57 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,688 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 32,464 KB |
最終ジャッジ日時 | 2024-10-15 06:58:23 |
合計ジャッジ時間 | 15,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
17,700 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 34 ms
10,752 KB |
testcase_03 | AC | 32 ms
11,008 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 30 ms
11,008 KB |
testcase_06 | AC | 31 ms
11,008 KB |
testcase_07 | AC | 31 ms
11,008 KB |
testcase_08 | AC | 31 ms
11,008 KB |
testcase_09 | AC | 31 ms
10,880 KB |
testcase_10 | AC | 31 ms
10,880 KB |
testcase_11 | AC | 31 ms
10,880 KB |
testcase_12 | AC | 35 ms
11,008 KB |
testcase_13 | AC | 36 ms
11,008 KB |
testcase_14 | AC | 36 ms
11,008 KB |
testcase_15 | AC | 35 ms
11,008 KB |
testcase_16 | AC | 35 ms
11,008 KB |
testcase_17 | AC | 37 ms
11,008 KB |
testcase_18 | AC | 35 ms
11,008 KB |
testcase_19 | AC | 36 ms
11,136 KB |
testcase_20 | AC | 37 ms
11,136 KB |
testcase_21 | AC | 35 ms
11,008 KB |
testcase_22 | AC | 494 ms
11,008 KB |
testcase_23 | AC | 166 ms
11,136 KB |
testcase_24 | AC | 493 ms
11,136 KB |
testcase_25 | AC | 495 ms
11,136 KB |
testcase_26 | AC | 317 ms
11,136 KB |
testcase_27 | AC | 1,563 ms
32,080 KB |
testcase_28 | AC | 1,604 ms
31,772 KB |
testcase_29 | AC | 1,387 ms
32,464 KB |
testcase_30 | AC | 1,625 ms
32,432 KB |
testcase_31 | AC | 1,504 ms
31,832 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
# -*- coding: utf-8 -*- """ Created on Sat Aug 22 11:41:03 2020 """ from bisect import bisect_left, bisect_right 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()) N, A, B = map(int,input().split()) X = list(map(int, input().split())) uf = UnionFind(N) for idx, i in enumerate(X): L_left = bisect_left(X, i-B) L_right = bisect_right(X, i-A) R_left = bisect_left(X, i+A) R_right = bisect_right(X, i+B) for j in range(L_left, L_right): uf.union(idx,j) for j in range(R_left, R_right): uf.union(idx,j) for i in range(N): print(uf.size(i))