結果

問題 No.1170 Never Want to Walk
ユーザー Kiri8128Kiri8128
提出日時 2020-08-14 22:59:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,684 KB
最終ジャッジ日時 2024-10-10 16:20:01
合計ジャッジ時間 6,680 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 43 ms
52,608 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,992 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 37 ms
52,736 KB
testcase_07 WA -
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 41 ms
52,352 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 63 ms
69,120 KB
testcase_23 AC 59 ms
66,816 KB
testcase_24 AC 60 ms
66,944 KB
testcase_25 AC 57 ms
67,312 KB
testcase_26 AC 61 ms
66,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 179 ms
98,740 KB
testcase_33 AC 242 ms
98,780 KB
testcase_34 AC 189 ms
98,680 KB
testcase_35 AC 242 ms
98,560 KB
testcase_36 AC 241 ms
98,304 KB
testcase_37 AC 212 ms
98,372 KB
testcase_38 AC 202 ms
103,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right as br
def par(a):
    L = []
    while P[a] >= 0:
        L.append(a)
        a = P[a]
    for l in L:
        P[l] = a
    return a
def unite(a, b):
    if par(a) != par(b):
        if P[par(b)] >= P[par(a)]:
            if P[par(b)] == P[par(a)]: P[par(a)] -= 1
            P[par(b)] = par(a)
        else:
            P[par(a)] = par(b)

N, A, B = map(int, input().split())
P = [-1 for i in range(N)]
X = [int(a) for a in input().split()]
done = [0] * N
i = 0
for i in range(N):
    if done[i]: continue
    done[i] = 1
    j0 = br(X, X[i] + B) - 1
    j = j0
    while X[j] >= X[i] + A:
        unite(i, j)
        done[j] = 1
        j -= 1
        if done[j]:
            done[j+1] = 0
            break
    done[j0] = 0

cnt = [0] * N
for i in range(N):
    cnt[par(i)] += 1
print(*[cnt[par(i)] for i in range(N)], sep = "\n")
0