結果

問題 No.1170 Never Want to Walk
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-08 14:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 110,732 KB
最終ジャッジ日時 2024-07-22 15:08:06
合計ジャッジ時間 7,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,268 KB
testcase_01 AC 41 ms
52,596 KB
testcase_02 AC 41 ms
53,872 KB
testcase_03 AC 42 ms
53,272 KB
testcase_04 AC 41 ms
53,024 KB
testcase_05 AC 41 ms
53,540 KB
testcase_06 AC 40 ms
52,596 KB
testcase_07 AC 41 ms
54,040 KB
testcase_08 AC 40 ms
53,344 KB
testcase_09 AC 40 ms
52,888 KB
testcase_10 AC 41 ms
52,864 KB
testcase_11 AC 42 ms
52,400 KB
testcase_12 AC 65 ms
68,260 KB
testcase_13 AC 68 ms
71,348 KB
testcase_14 AC 68 ms
70,636 KB
testcase_15 AC 65 ms
69,532 KB
testcase_16 AC 67 ms
71,276 KB
testcase_17 AC 68 ms
70,672 KB
testcase_18 AC 63 ms
68,320 KB
testcase_19 AC 66 ms
69,900 KB
testcase_20 AC 69 ms
71,752 KB
testcase_21 AC 66 ms
68,664 KB
testcase_22 AC 68 ms
70,568 KB
testcase_23 AC 70 ms
72,512 KB
testcase_24 AC 69 ms
72,428 KB
testcase_25 AC 68 ms
70,332 KB
testcase_26 AC 70 ms
71,380 KB
testcase_27 AC 377 ms
103,344 KB
testcase_28 AC 375 ms
110,124 KB
testcase_29 AC 434 ms
103,780 KB
testcase_30 AC 381 ms
103,196 KB
testcase_31 AC 379 ms
110,188 KB
testcase_32 AC 268 ms
103,024 KB
testcase_33 AC 299 ms
110,732 KB
testcase_34 AC 324 ms
103,896 KB
testcase_35 AC 322 ms
103,628 KB
testcase_36 AC 267 ms
102,980 KB
testcase_37 AC 307 ms
103,588 KB
testcase_38 AC 294 ms
103,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def Find(x, par):
    if par[x] < 0:
        return x
    else:
        par[x] = Find(par[x], par)
        return par[x]

def Unite(x, y, par, rank):
    x = Find(x, par)
    y = Find(y, par)

    if x != y:
        if rank[x] < rank[y]:
            par[y] += par[x]
            par[x] = y
        else:
            par[x] += par[y]
            par[y] = x
            if rank[x] == rank[y]:
                rank[x] += 1

def Same(x, y, par):
    return Find(x, par) == Find(y, par)

def Size(x, par):
    return -par[Find(x, par)]

par = [-1]* n
rank = [0]*n

import bisect
for i in range(n):
    x = X[i]
    l = bisect.bisect_left(X, x+a)
    r = bisect.bisect_right(X, x+b)
    for k in reversed(range(l, r)):
        if Same(i, k, par):
            break
        Unite(i, k, par, rank)

ans = [0]*n
for i in range(n):
    ans[i] = Size(i, par)
print(*ans, sep='\n')
0