結果

問題 No.1170 Never Want to Walk
ユーザー kohei2019kohei2019
提出日時 2022-07-19 22:39:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,073 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 109,440 KB
最終ジャッジ日時 2024-07-02 02:37:45
合計ジャッジ時間 8,805 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,704 KB
testcase_01 AC 45 ms
53,760 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 44 ms
53,248 KB
testcase_05 AC 46 ms
53,760 KB
testcase_06 AC 43 ms
53,888 KB
testcase_07 AC 44 ms
54,144 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 44 ms
53,248 KB
testcase_10 AC 44 ms
53,760 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 79 ms
70,784 KB
testcase_13 AC 75 ms
73,088 KB
testcase_14 AC 77 ms
73,216 KB
testcase_15 AC 70 ms
70,784 KB
testcase_16 AC 68 ms
70,248 KB
testcase_17 AC 89 ms
76,564 KB
testcase_18 AC 69 ms
70,696 KB
testcase_19 AC 68 ms
69,888 KB
testcase_20 AC 77 ms
74,368 KB
testcase_21 AC 68 ms
70,016 KB
testcase_22 AC 89 ms
76,032 KB
testcase_23 AC 91 ms
76,800 KB
testcase_24 AC 90 ms
76,416 KB
testcase_25 AC 87 ms
76,032 KB
testcase_26 AC 92 ms
76,288 KB
testcase_27 AC 430 ms
103,084 KB
testcase_28 AC 434 ms
102,812 KB
testcase_29 AC 457 ms
103,916 KB
testcase_30 AC 433 ms
103,224 KB
testcase_31 AC 427 ms
103,112 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import collections

def main():
    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]])
main()
0