結果

問題 No.1170 Never Want to Walk
ユーザー 👑 hahhohahho
提出日時 2021-02-28 02:06:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 1,092 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 107,648 KB
最終ジャッジ日時 2024-10-02 18:06:35
合計ジャッジ時間 8,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 41 ms
52,460 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 52 ms
62,592 KB
testcase_13 AC 54 ms
64,768 KB
testcase_14 AC 54 ms
64,384 KB
testcase_15 AC 56 ms
64,512 KB
testcase_16 AC 51 ms
63,232 KB
testcase_17 AC 53 ms
64,512 KB
testcase_18 AC 52 ms
62,464 KB
testcase_19 AC 54 ms
63,872 KB
testcase_20 AC 54 ms
64,640 KB
testcase_21 AC 51 ms
62,620 KB
testcase_22 AC 57 ms
66,304 KB
testcase_23 AC 59 ms
66,560 KB
testcase_24 AC 56 ms
66,432 KB
testcase_25 AC 56 ms
66,176 KB
testcase_26 AC 57 ms
66,432 KB
testcase_27 AC 290 ms
103,212 KB
testcase_28 AC 273 ms
107,524 KB
testcase_29 AC 306 ms
103,920 KB
testcase_30 AC 290 ms
103,100 KB
testcase_31 AC 288 ms
107,360 KB
testcase_32 AC 269 ms
102,868 KB
testcase_33 AC 261 ms
107,648 KB
testcase_34 AC 259 ms
102,532 KB
testcase_35 AC 255 ms
103,096 KB
testcase_36 AC 264 ms
103,080 KB
testcase_37 AC 267 ms
102,524 KB
testcase_38 AC 266 ms
102,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class DisjointSet:
    def __init__(self, size):
        self.parent = list(range(size))
        self.rank = [0]*size
    
    def find(self, x):
        stack = []
        parent = self.parent
        while parent[x] != x:
            stack.append(x)
            x = parent[x]
        for y in stack:
            parent[y] = x
        return x

    def union(self, x, y):
        xr, yr = self.find(x), self.find(y)
        
        if self.rank[xr] > self.rank[yr]:
            self.parent[yr] = xr
        elif self.rank[xr] < self.rank[yr]:
            self.parent[xr] = yr
        elif xr != yr:
            self.parent[yr] = xr
            self.rank[xr] += 1

n,a,b = map(int,input().split())
X = list(map(int,input().split()))
ds = DisjointSet(n)

j = 0

for i,xi in enumerate(X):
    while j < n and X[j] < a+xi:
        j += 1
    if j == n:
        break
    if X[j] <= b+xi:
        ds.union(i,j)
    while j+1 < n and X[j+1] <= b+xi:
        ds.union(j,j+1)
        j += 1


cnt = [0]*n
for i in range(n):
    cnt[ds.find(i)] += 1

for i in range(n):
    print(cnt[ds.find(i)])


0