結果

問題 No.1170 Never Want to Walk
ユーザー tktk_snsntktk_snsn
提出日時 2020-08-14 21:38:08
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,199 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 110,792 KB
最終ジャッジ日時 2024-10-10 14:40:08
合計ジャッジ時間 7,342 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,888 KB
testcase_01 AC 36 ms
52,476 KB
testcase_02 AC 38 ms
52,616 KB
testcase_03 AC 38 ms
54,156 KB
testcase_04 AC 37 ms
52,332 KB
testcase_05 AC 37 ms
53,688 KB
testcase_06 AC 35 ms
53,424 KB
testcase_07 AC 37 ms
53,260 KB
testcase_08 AC 37 ms
54,036 KB
testcase_09 AC 36 ms
52,964 KB
testcase_10 AC 36 ms
54,132 KB
testcase_11 AC 36 ms
53,576 KB
testcase_12 AC 53 ms
64,376 KB
testcase_13 AC 63 ms
71,416 KB
testcase_14 AC 60 ms
68,620 KB
testcase_15 AC 54 ms
65,672 KB
testcase_16 AC 55 ms
66,556 KB
testcase_17 AC 66 ms
70,748 KB
testcase_18 AC 53 ms
65,200 KB
testcase_19 AC 56 ms
67,500 KB
testcase_20 AC 64 ms
71,184 KB
testcase_21 AC 53 ms
66,312 KB
testcase_22 AC 61 ms
68,440 KB
testcase_23 AC 64 ms
71,728 KB
testcase_24 AC 69 ms
70,324 KB
testcase_25 AC 63 ms
69,216 KB
testcase_26 AC 69 ms
72,056 KB
testcase_27 AC 236 ms
107,752 KB
testcase_28 AC 221 ms
106,676 KB
testcase_29 AC 277 ms
107,992 KB
testcase_30 AC 241 ms
107,532 KB
testcase_31 AC 258 ms
107,200 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)  # -1ならそのノードが根,で絶対値が木の要素数
        self.rank = [0] * (n + 1)

    def find(self, x):  # xの根となる要素番号を返す
        if self.root[x] < 0:
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

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

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        elif self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    def size(self, x):
        return -self.root[self.find(x)]


N, A, B = map(int, input().split())
X = tuple(map(int, input().split()))
uf = UF_tree(N)
for i, x in enumerate(X):
    L = bisect.bisect_left(X, x + A)
    while L < N and X[L] <= x + B:
        uf.unite(i, L)
        L += 1

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