結果

問題 No.1170 Never Want to Walk
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-05 01:17:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,205 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 109,988 KB
最終ジャッジ日時 2024-10-05 01:17:34
合計ジャッジ時間 8,946 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,008 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 37 ms
53,888 KB
testcase_03 AC 37 ms
54,144 KB
testcase_04 AC 41 ms
54,144 KB
testcase_05 AC 37 ms
54,144 KB
testcase_06 AC 37 ms
54,272 KB
testcase_07 AC 37 ms
53,888 KB
testcase_08 AC 36 ms
53,760 KB
testcase_09 AC 37 ms
54,272 KB
testcase_10 AC 38 ms
54,264 KB
testcase_11 AC 38 ms
53,760 KB
testcase_12 AC 69 ms
69,248 KB
testcase_13 AC 84 ms
76,544 KB
testcase_14 AC 69 ms
73,840 KB
testcase_15 AC 66 ms
69,632 KB
testcase_16 AC 70 ms
70,016 KB
testcase_17 AC 94 ms
76,288 KB
testcase_18 AC 75 ms
69,120 KB
testcase_19 AC 70 ms
70,400 KB
testcase_20 AC 87 ms
77,056 KB
testcase_21 AC 66 ms
69,632 KB
testcase_22 AC 77 ms
74,496 KB
testcase_23 AC 84 ms
76,544 KB
testcase_24 AC 86 ms
76,544 KB
testcase_25 AC 76 ms
73,600 KB
testcase_26 AC 86 ms
76,288 KB
testcase_27 AC 357 ms
105,324 KB
testcase_28 AC 302 ms
105,316 KB
testcase_29 AC 363 ms
105,772 KB
testcase_30 AC 326 ms
105,592 KB
testcase_31 AC 353 ms
105,468 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
    for j in range(li, ri):
        uf.union(i, j)
    
    if li != ri:
        S[li] += 1
        S[ri-1] -= 1


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