結果

問題 No.1170 Never Want to Walk
ユーザー daikisuyamadaikisuyama
提出日時 2020-08-14 22:00:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,283 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 109,684 KB
最終ジャッジ日時 2024-10-10 15:15:37
合計ジャッジ時間 8,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,396 KB
testcase_01 AC 41 ms
54,932 KB
testcase_02 AC 45 ms
54,528 KB
testcase_03 AC 41 ms
54,304 KB
testcase_04 AC 42 ms
54,580 KB
testcase_05 AC 41 ms
54,312 KB
testcase_06 AC 41 ms
54,324 KB
testcase_07 AC 41 ms
54,384 KB
testcase_08 AC 42 ms
53,876 KB
testcase_09 AC 41 ms
54,500 KB
testcase_10 AC 41 ms
55,832 KB
testcase_11 AC 41 ms
54,612 KB
testcase_12 AC 69 ms
72,476 KB
testcase_13 AC 74 ms
74,776 KB
testcase_14 AC 75 ms
74,656 KB
testcase_15 AC 69 ms
70,936 KB
testcase_16 AC 67 ms
70,712 KB
testcase_17 AC 89 ms
76,608 KB
testcase_18 AC 69 ms
72,236 KB
testcase_19 AC 68 ms
72,060 KB
testcase_20 AC 83 ms
76,496 KB
testcase_21 AC 68 ms
71,144 KB
testcase_22 AC 75 ms
74,560 KB
testcase_23 AC 86 ms
76,860 KB
testcase_24 AC 88 ms
76,392 KB
testcase_25 AC 76 ms
74,732 KB
testcase_26 AC 85 ms
76,664 KB
testcase_27 AC 509 ms
102,112 KB
testcase_28 AC 467 ms
108,932 KB
testcase_29 AC 497 ms
102,572 KB
testcase_30 AC 485 ms
102,620 KB
testcase_31 AC 455 ms
108,520 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
x=list(map(int,input().split()))
check=[False]*n
from collections import deque
from bisect import bisect_left,bisect_right
ans=[]
for i in range(n):
    if check[i]==False:
        check[i]=True
        ans_sub=[i]
        now=deque({i})
        while len(now):
            for _ in range(len(now)):
                d=x[now.popleft()]
                l1=bisect_left(x,d-b)
                l2=bisect_right(x,d-a)-1
                #print(1)
                #print(l1,l2)
                if l1<=l2:
                    for j in range(l1,l2+1):
                        if check[j]==False:
                            check[j]=True
                            now.append(j)
                            ans_sub.append(j)
                r1=bisect_left(x,d+a)
                r2=bisect_right(x,d+b)-1
                #print(2)
                #print(r1,r2)
                if r1<=r2:
                    for j in range(r1,r2+1):
                        if check[j]==False:
                            check[j]=True
                            now.append(j)
                            ans_sub.append(j)
        ans.append(ans_sub)
#print(check)
#print(ans)
g=[0]*n
for i in ans:
    l=len(i)
    for j in i:
        g[j]=l
for i in range(n):
    print(g[i])
0