結果

問題 No.1170 Never Want to Walk
ユーザー もぐら 3.0もぐら 3.0
提出日時 2023-11-21 23:31:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,185 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 221,928 KB
最終ジャッジ日時 2024-09-26 07:21:04
合計ジャッジ時間 12,528 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,264 KB
testcase_01 AC 40 ms
54,528 KB
testcase_02 AC 38 ms
54,656 KB
testcase_03 AC 39 ms
54,400 KB
testcase_04 AC 39 ms
54,400 KB
testcase_05 AC 39 ms
53,888 KB
testcase_06 AC 38 ms
54,144 KB
testcase_07 AC 38 ms
53,888 KB
testcase_08 AC 39 ms
54,372 KB
testcase_09 AC 39 ms
54,272 KB
testcase_10 AC 39 ms
54,400 KB
testcase_11 AC 39 ms
54,272 KB
testcase_12 AC 67 ms
72,192 KB
testcase_13 AC 89 ms
76,980 KB
testcase_14 AC 88 ms
76,416 KB
testcase_15 AC 67 ms
73,216 KB
testcase_16 AC 77 ms
76,764 KB
testcase_17 AC 96 ms
77,184 KB
testcase_18 AC 70 ms
72,960 KB
testcase_19 AC 79 ms
76,544 KB
testcase_20 AC 95 ms
77,268 KB
testcase_21 AC 67 ms
72,192 KB
testcase_22 AC 163 ms
76,928 KB
testcase_23 AC 117 ms
76,896 KB
testcase_24 AC 173 ms
77,440 KB
testcase_25 AC 162 ms
77,400 KB
testcase_26 AC 136 ms
77,312 KB
testcase_27 AC 897 ms
221,928 KB
testcase_28 AC 830 ms
219,460 KB
testcase_29 AC 850 ms
221,580 KB
testcase_30 AC 850 ms
219,416 KB
testcase_31 AC 876 ms
218,944 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
class UnionFind():
    def __init__(self):
        self.parents = dict()                                      
        self.members_set = collections.defaultdict(lambda : set()) 
        self.roots_set = set()                                     
        self.key_ID = dict()                                      
        self.ID_key = dict()                                      
        self.cnt = 0                                              

    def dictf(self,x):
        if x in self.key_ID:
            return self.key_ID[x]
        else:
            self.cnt += 1
            self.key_ID[x] = self.cnt
            self.parents[x] = self.cnt
            self.ID_key[self.cnt] = x
            self.members_set[x].add(x)
            self.roots_set.add(x)
            return self.key_ID[x]

    def find(self, x):
        ID_x = self.dictf(x)
        if self.parents[x] == ID_x:
            return x
        else:
            self.parents[x] = self.key_ID[self.find(self.ID_key[self.parents[x]])]
            return self.ID_key[self.parents[x]]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        if x == y:
            return
        for i in self.members_set[y]:
            self.members_set[x].add(i)
        self.members_set[y] = set()
        self.roots_set.remove(y)
        self.parents[y] = self.key_ID[x]

    def size(self, x):
        return len(self.members_set[self.find(x)])

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, x):
        return self.members_set[self.find(x)]

    def roots(self):
        return self.roots_set

    def group_count(self):
        return len(self.roots_set)

    def all_group_members(self):
        return {r: self.members_set[r] for r in self.roots_set}

import bisect
N,A,B = map(int,input().split())
x = list(map(int,input().split()))
uf_s = UnionFind()

for i in range(N-1):
    left=bisect.bisect_left(x,x[i]+A)
    right=bisect.bisect_right(x,x[i]+B)
    for j in range(left,right):
        uf_s.union(x[i], x[j])

for n in x:
    print(len(uf_s.members(n)))
0