結果

問題 No.1170 Never Want to Walk
ユーザー Kiri8128Kiri8128
提出日時 2020-08-14 23:01:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 103,476 KB
最終ジャッジ日時 2024-10-10 16:23:52
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,896 KB
testcase_01 AC 37 ms
53,264 KB
testcase_02 AC 38 ms
52,328 KB
testcase_03 AC 37 ms
53,148 KB
testcase_04 AC 37 ms
52,680 KB
testcase_05 AC 38 ms
53,504 KB
testcase_06 AC 37 ms
53,280 KB
testcase_07 AC 37 ms
53,108 KB
testcase_08 AC 38 ms
53,852 KB
testcase_09 AC 37 ms
53,552 KB
testcase_10 AC 38 ms
52,936 KB
testcase_11 AC 38 ms
53,792 KB
testcase_12 AC 55 ms
68,488 KB
testcase_13 AC 70 ms
74,868 KB
testcase_14 AC 64 ms
73,092 KB
testcase_15 AC 60 ms
68,676 KB
testcase_16 AC 60 ms
69,944 KB
testcase_17 AC 68 ms
74,596 KB
testcase_18 AC 56 ms
68,112 KB
testcase_19 AC 58 ms
70,740 KB
testcase_20 AC 74 ms
76,672 KB
testcase_21 AC 57 ms
68,668 KB
testcase_22 AC 57 ms
70,068 KB
testcase_23 AC 54 ms
67,300 KB
testcase_24 AC 52 ms
67,992 KB
testcase_25 AC 52 ms
68,196 KB
testcase_26 AC 51 ms
67,140 KB
testcase_27 AC 344 ms
98,748 KB
testcase_28 AC 343 ms
98,436 KB
testcase_29 AC 328 ms
98,548 KB
testcase_30 AC 317 ms
98,624 KB
testcase_31 AC 311 ms
98,556 KB
testcase_32 AC 160 ms
98,932 KB
testcase_33 AC 228 ms
98,688 KB
testcase_34 AC 175 ms
99,004 KB
testcase_35 AC 218 ms
98,576 KB
testcase_36 AC 214 ms
98,668 KB
testcase_37 AC 186 ms
98,304 KB
testcase_38 AC 202 ms
103,476 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
    j = br(X, X[i] + B) - 1
    jma = jmi = j
    while done[j] == 0 and X[j] >= X[i] + A:
        unite(i, j)
        done[j] = 1
        jmi = j
        j -= 1
    done[jma] = 0
    done[jmi] = 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