結果

問題 No.1170 Never Want to Walk
ユーザー H20H20
提出日時 2021-11-23 23:19:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 1,739 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,644 KB
最終ジャッジ日時 2024-06-25 21:05:03
合計ジャッジ時間 8,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 43 ms
54,784 KB
testcase_02 AC 49 ms
54,528 KB
testcase_03 AC 44 ms
54,528 KB
testcase_04 AC 44 ms
54,528 KB
testcase_05 AC 46 ms
54,528 KB
testcase_06 AC 44 ms
54,528 KB
testcase_07 AC 45 ms
54,656 KB
testcase_08 AC 44 ms
54,144 KB
testcase_09 AC 43 ms
54,528 KB
testcase_10 AC 44 ms
54,400 KB
testcase_11 AC 45 ms
54,476 KB
testcase_12 AC 65 ms
69,120 KB
testcase_13 AC 67 ms
71,168 KB
testcase_14 AC 67 ms
71,424 KB
testcase_15 AC 64 ms
68,992 KB
testcase_16 AC 65 ms
70,272 KB
testcase_17 AC 67 ms
71,936 KB
testcase_18 AC 64 ms
69,248 KB
testcase_19 AC 66 ms
70,272 KB
testcase_20 AC 67 ms
71,040 KB
testcase_21 AC 67 ms
69,120 KB
testcase_22 AC 67 ms
71,040 KB
testcase_23 AC 71 ms
72,064 KB
testcase_24 AC 67 ms
71,680 KB
testcase_25 AC 66 ms
71,168 KB
testcase_26 AC 67 ms
71,680 KB
testcase_27 AC 368 ms
102,236 KB
testcase_28 AC 347 ms
102,644 KB
testcase_29 AC 389 ms
102,296 KB
testcase_30 AC 341 ms
102,216 KB
testcase_31 AC 373 ms
102,208 KB
testcase_32 AC 290 ms
102,120 KB
testcase_33 AC 275 ms
102,184 KB
testcase_34 AC 297 ms
101,476 KB
testcase_35 AC 308 ms
102,112 KB
testcase_36 AC 296 ms
102,036 KB
testcase_37 AC 261 ms
102,084 KB
testcase_38 AC 296 ms
101,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
from collections import defaultdict
import bisect

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):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    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())) 
uf = UnionFind(N)
for i in range(N):
    a = bisect.bisect_right(X,X[i]+A-1)
    b = bisect.bisect_right(X,X[i]+B)-1
    for j in reversed(range(a,b+1)):
        if uf.same(i,j):
            break
        else:
            uf.union(i,j)

for i in range(N):
    print(uf.size(i))
0