結果

問題 No.1170 Never Want to Walk
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-05 01:19:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 540 ms / 2,000 ms
コード長 1,199 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 106,060 KB
最終ジャッジ日時 2024-10-05 01:20:06
合計ジャッジ時間 8,423 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 39 ms
54,272 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 39 ms
53,888 KB
testcase_04 AC 37 ms
54,400 KB
testcase_05 AC 39 ms
54,016 KB
testcase_06 AC 38 ms
53,632 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 47 ms
54,144 KB
testcase_09 AC 39 ms
53,760 KB
testcase_10 AC 45 ms
54,144 KB
testcase_11 AC 40 ms
54,016 KB
testcase_12 AC 64 ms
69,120 KB
testcase_13 AC 69 ms
71,680 KB
testcase_14 AC 69 ms
71,680 KB
testcase_15 AC 66 ms
69,760 KB
testcase_16 AC 66 ms
70,144 KB
testcase_17 AC 68 ms
71,680 KB
testcase_18 AC 65 ms
69,632 KB
testcase_19 AC 66 ms
70,272 KB
testcase_20 AC 69 ms
72,064 KB
testcase_21 AC 64 ms
69,248 KB
testcase_22 AC 69 ms
71,552 KB
testcase_23 AC 71 ms
72,192 KB
testcase_24 AC 78 ms
70,784 KB
testcase_25 AC 68 ms
70,784 KB
testcase_26 AC 79 ms
71,936 KB
testcase_27 AC 433 ms
105,268 KB
testcase_28 AC 415 ms
105,320 KB
testcase_29 AC 540 ms
105,776 KB
testcase_30 AC 426 ms
106,060 KB
testcase_31 AC 459 ms
105,484 KB
testcase_32 AC 352 ms
105,372 KB
testcase_33 AC 368 ms
105,272 KB
testcase_34 AC 367 ms
105,264 KB
testcase_35 AC 308 ms
105,352 KB
testcase_36 AC 298 ms
105,180 KB
testcase_37 AC 295 ms
105,344 KB
testcase_38 AC 357 ms
105,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n=1):
        self.parent = [i for i in range(n)]
        self.rank = [0] * n
    
    def find(self, x):
        if self.parent[x] == x:
            return x
        else:
            self.parent[x] = self.find(self.parent[x])
            return self.parent[x]
    
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.parent[y] = x
    
    def is_same(self, x, y):
        return self.find(x) == self.find(y)

from bisect import bisect_left, bisect_right
from collections import Counter


N, A, B = map(int, input().split())
X = list(map(int, input().split()))
uf = UnionFind(N)

S = [0] * (N+1)
for i, xi in enumerate(X):
    S[i] += S[i-1]
    if S[i] and i < N-1:
        uf.union(i, i+1)
    li = bisect_left(X, xi+A)
    ri = bisect_right(X, xi+B) - 1
    if li <= ri:
        uf.union(i, li)
        uf.union(i, ri)
        S[li] += 1
        S[ri] -= 1


g = [uf.find(i) for i in range(N)]
cnt = Counter(g)
for gi in g:
    print(cnt[gi])
0