結果

問題 No.1170 Never Want to Walk
ユーザー titiatitia
提出日時 2020-08-14 21:51:41
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 767 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 138,172 KB
最終ジャッジ日時 2024-10-10 15:02:51
合計ジャッジ時間 8,623 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,984 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 37 ms
52,864 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 66 ms
69,504 KB
testcase_13 AC 75 ms
73,984 KB
testcase_14 AC 67 ms
70,912 KB
testcase_15 AC 65 ms
69,376 KB
testcase_16 AC 65 ms
68,736 KB
testcase_17 AC 73 ms
72,960 KB
testcase_18 AC 66 ms
68,992 KB
testcase_19 AC 65 ms
69,128 KB
testcase_20 AC 73 ms
73,096 KB
testcase_21 AC 63 ms
68,864 KB
testcase_22 AC 85 ms
73,856 KB
testcase_23 AC 77 ms
73,828 KB
testcase_24 AC 80 ms
72,832 KB
testcase_25 AC 80 ms
73,472 KB
testcase_26 AC 79 ms
73,728 KB
testcase_27 AC 462 ms
112,136 KB
testcase_28 AC 457 ms
113,876 KB
testcase_29 AC 472 ms
122,172 KB
testcase_30 AC 493 ms
121,548 KB
testcase_31 AC 485 ms
109,224 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,a,b=map(int,input().split())
X=list(map(int,input().split()))

import bisect

USEALL=set()
ANS=[-1]*N

for i in range(N):
    if i in USEALL:
        continue
    Q=[i]
    USE={i}

    while Q:
        x=Q.pop()
        s=bisect.bisect_left(X,X[x]+a)
        t=bisect.bisect_right(X,X[x]+b)

        for j in range(s,t):
            if j in USE:
                continue
            USE.add(j)
            Q.append(j)

        s=bisect.bisect_left(X,X[x]-b)
        t=bisect.bisect_right(X,X[x]-a)

        for j in range(s,t):
            if j in USE:
                continue
            USE.add(j)
            Q.append(j)

    L=len(USE)
    for t in USE:
        ANS[t]=L
    USEALL|=USE

for a in ANS:
    print(a)
    
0