結果

問題 No.1170 Never Want to Walk
ユーザー kohei2019kohei2019
提出日時 2022-07-19 22:36:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 933 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 111,032 KB
最終ジャッジ日時 2024-07-02 02:34:08
合計ジャッジ時間 8,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,784 KB
testcase_01 AC 42 ms
54,388 KB
testcase_02 AC 43 ms
54,044 KB
testcase_03 AC 43 ms
54,496 KB
testcase_04 AC 42 ms
54,932 KB
testcase_05 AC 43 ms
54,356 KB
testcase_06 AC 42 ms
54,352 KB
testcase_07 AC 43 ms
54,700 KB
testcase_08 AC 43 ms
55,344 KB
testcase_09 AC 43 ms
54,140 KB
testcase_10 AC 42 ms
55,464 KB
testcase_11 AC 43 ms
54,744 KB
testcase_12 AC 71 ms
72,688 KB
testcase_13 AC 75 ms
74,508 KB
testcase_14 AC 74 ms
74,328 KB
testcase_15 AC 70 ms
71,384 KB
testcase_16 AC 68 ms
71,232 KB
testcase_17 AC 88 ms
76,756 KB
testcase_18 AC 70 ms
72,776 KB
testcase_19 AC 69 ms
70,920 KB
testcase_20 AC 82 ms
76,240 KB
testcase_21 AC 69 ms
70,752 KB
testcase_22 AC 89 ms
76,236 KB
testcase_23 AC 91 ms
76,780 KB
testcase_24 AC 88 ms
76,456 KB
testcase_25 AC 86 ms
76,248 KB
testcase_26 AC 89 ms
76,508 KB
testcase_27 AC 455 ms
103,284 KB
testcase_28 AC 439 ms
103,820 KB
testcase_29 AC 461 ms
103,804 KB
testcase_30 AC 440 ms
103,852 KB
testcase_31 AC 445 ms
103,428 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import collections
N,A,B = map(int,input().split())
lsx = list(map(int,input().split()))

used = [-1]*(N)
ap = [False]*(N)
for i in range(N):
    if used[i] != -1:
        continue
    d = collections.deque([i])
    while d:
        now = d.popleft()
        if used[now] != -1:
            continue
        used[now] = i
        indl = bisect.bisect_left(lsx, lsx[now]-B)
        indr = bisect.bisect_right(lsx, lsx[now]-A)
        for nex in range(indl,indr):
            if used[nex] != -1 or ap[nex]:
                continue
            ap[nex] = True
            d.append(nex)
        indl = bisect.bisect_left(lsx, lsx[now]+A)
        indr = bisect.bisect_right(lsx, lsx[now]+B)
        for nex in range(indl,indr):
            if used[nex] != -1 or ap[nex]:
                continue
            ap[nex] = True
            d.append(nex)

cnt = collections.Counter(used)
for i in range(N):
    print(cnt[used[i]])
0