結果

問題 No.1170 Never Want to Walk
ユーザー brthyyjpbrthyyjp
提出日時 2020-11-08 14:39:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 933 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 110,616 KB
最終ジャッジ日時 2024-07-22 15:07:58
合計ジャッジ時間 6,841 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,152 KB
testcase_01 AC 37 ms
53,160 KB
testcase_02 AC 37 ms
52,960 KB
testcase_03 AC 34 ms
53,276 KB
testcase_04 AC 33 ms
52,620 KB
testcase_05 AC 36 ms
52,964 KB
testcase_06 AC 34 ms
52,680 KB
testcase_07 AC 35 ms
53,148 KB
testcase_08 AC 34 ms
52,332 KB
testcase_09 AC 34 ms
53,936 KB
testcase_10 AC 34 ms
52,528 KB
testcase_11 AC 35 ms
53,548 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 61 ms
70,520 KB
testcase_23 AC 60 ms
71,460 KB
testcase_24 AC 57 ms
70,464 KB
testcase_25 AC 56 ms
70,420 KB
testcase_26 AC 57 ms
71,756 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 226 ms
103,156 KB
testcase_33 AC 239 ms
110,308 KB
testcase_34 AC 260 ms
103,912 KB
testcase_35 AC 273 ms
103,972 KB
testcase_36 AC 218 ms
103,104 KB
testcase_37 AC 248 ms
102,972 KB
testcase_38 AC 224 ms
103,076 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 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