結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,592 KB
testcase_01 AC 41 ms
55,600 KB
testcase_02 AC 41 ms
54,628 KB
testcase_03 AC 41 ms
55,068 KB
testcase_04 AC 41 ms
55,704 KB
testcase_05 AC 41 ms
54,204 KB
testcase_06 AC 41 ms
54,648 KB
testcase_07 AC 41 ms
54,748 KB
testcase_08 AC 41 ms
55,368 KB
testcase_09 AC 42 ms
55,788 KB
testcase_10 AC 42 ms
54,364 KB
testcase_11 AC 41 ms
54,968 KB
testcase_12 AC 72 ms
73,576 KB
testcase_13 AC 75 ms
74,028 KB
testcase_14 AC 76 ms
74,504 KB
testcase_15 AC 70 ms
72,492 KB
testcase_16 AC 68 ms
71,912 KB
testcase_17 AC 89 ms
76,592 KB
testcase_18 AC 70 ms
74,272 KB
testcase_19 AC 68 ms
72,196 KB
testcase_20 AC 84 ms
76,400 KB
testcase_21 AC 69 ms
72,228 KB
testcase_22 AC 76 ms
74,752 KB
testcase_23 AC 85 ms
76,916 KB
testcase_24 AC 86 ms
76,232 KB
testcase_25 AC 82 ms
74,528 KB
testcase_26 AC 86 ms
76,808 KB
testcase_27 AC 513 ms
102,120 KB
testcase_28 AC 470 ms
106,732 KB
testcase_29 AC 511 ms
102,692 KB
testcase_30 AC 499 ms
102,252 KB
testcase_31 AC 473 ms
106,824 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()))
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=deque({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
                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
                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)
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