結果

問題 No.1170 Never Want to Walk
ユーザー i_takui_taku
提出日時 2024-05-17 15:58:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,008 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 201,268 KB
最終ジャッジ日時 2024-05-17 15:58:39
合計ジャッジ時間 7,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,516 KB
testcase_01 AC 33 ms
53,684 KB
testcase_02 AC 34 ms
53,060 KB
testcase_03 AC 34 ms
53,748 KB
testcase_04 AC 33 ms
53,604 KB
testcase_05 AC 35 ms
53,932 KB
testcase_06 AC 34 ms
52,964 KB
testcase_07 AC 33 ms
53,280 KB
testcase_08 AC 34 ms
53,756 KB
testcase_09 AC 33 ms
53,148 KB
testcase_10 AC 35 ms
53,876 KB
testcase_11 AC 36 ms
53,140 KB
testcase_12 AC 62 ms
71,316 KB
testcase_13 AC 74 ms
71,404 KB
testcase_14 AC 64 ms
71,412 KB
testcase_15 AC 63 ms
70,804 KB
testcase_16 AC 65 ms
72,348 KB
testcase_17 AC 64 ms
71,548 KB
testcase_18 AC 59 ms
69,844 KB
testcase_19 AC 62 ms
70,760 KB
testcase_20 AC 62 ms
70,436 KB
testcase_21 AC 63 ms
71,080 KB
testcase_22 AC 50 ms
64,912 KB
testcase_23 AC 53 ms
67,320 KB
testcase_24 AC 49 ms
65,944 KB
testcase_25 AC 49 ms
66,988 KB
testcase_26 AC 55 ms
68,888 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self._n = n
        self._parent = [-1] * n
        self._roots = set(range(n))

    def _find(self, x):
        if self._parent[x] < 0:
            return x
        self._parent[x] = self._find(self._parent[x])
        return self._parent[x]

    def union(self, x, y):
        x, y = self._find(x), self._find(y)
        if x == y:
            return
        if self._parent[y] < self._parent[x]:
            x, y = y, x
        self._parent[x] += self._parent[y]
        self._parent[y] = x
        self._roots.discard(y)

    def same(self, x, y):
        return self._find(x) == self._find(y)
    
    def size(self, x):
        return -self._parent[self._find(x)]

    def members(self, x):
        root = self._find(x)
        return [i for i in range(self._n) if self._find(i) == root]
    
    def all_group_members(self):
        group_members = dict()
        for member in range(self._n):
            root = self._find(member)
            if root not in group_members:
                group_members[root] = []
            group_members[root].append(member)
        return group_members

    def root(self, x):
        return self._find(x)

    def roots(self):
        return self._roots
    
    def group_count(self):
        return len(self.roots())
    
    def group_numbers(self):
        return [self._find(i) for i in range(self._n)]
    
    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())
    
N, A, B = map(int, input().split())
X = list(map(int, input().split()))
idx = {x: i for i, x in enumerate(X)}
S = set(X)
uf = UnionFind(N)
rm = []
while S:
    sx = S.pop()
    stack = [sx]
    while stack:
        x = stack.pop()
        for nx in S:
            if A <= abs(x - nx) <= B:
                uf.union(idx[x], idx[nx])
                rm.append(nx)
                stack.append(nx)
        while rm:
            S.discard(rm.pop())
for i in range(N):
    print(uf.size(i))
0