結果

問題 No.1170 Never Want to Walk
ユーザー しーあるしーある
提出日時 2020-08-15 07:56:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 931 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 225,620 KB
最終ジャッジ日時 2024-10-10 17:14:19
合計ジャッジ時間 13,520 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 40 ms
52,608 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 41 ms
52,480 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 41 ms
52,608 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 67 ms
67,840 KB
testcase_13 AC 80 ms
72,064 KB
testcase_14 AC 80 ms
72,576 KB
testcase_15 AC 67 ms
67,200 KB
testcase_16 AC 68 ms
67,584 KB
testcase_17 AC 81 ms
72,960 KB
testcase_18 AC 67 ms
67,584 KB
testcase_19 AC 71 ms
69,248 KB
testcase_20 AC 93 ms
76,544 KB
testcase_21 AC 69 ms
68,224 KB
testcase_22 AC 110 ms
76,624 KB
testcase_23 AC 113 ms
77,056 KB
testcase_24 AC 111 ms
76,856 KB
testcase_25 AC 113 ms
76,724 KB
testcase_26 AC 114 ms
76,740 KB
testcase_27 AC 625 ms
139,892 KB
testcase_28 AC 636 ms
132,708 KB
testcase_29 AC 612 ms
126,376 KB
testcase_30 AC 651 ms
128,236 KB
testcase_31 AC 655 ms
132,028 KB
testcase_32 AC 881 ms
218,724 KB
testcase_33 AC 928 ms
212,752 KB
testcase_34 AC 858 ms
220,940 KB
testcase_35 AC 931 ms
225,620 KB
testcase_36 AC 785 ms
216,660 KB
testcase_37 AC 820 ms
212,288 KB
testcase_38 AC 839 ms
216,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*
n,a,b,*x=map(int,open(0).read().split())
e=[[]]+[[i+i,i-~i]for i in range(1,n)]+[[]for _ in range(n)]
for i,y in enumerate(x,n):
    l,r=bisect(x,y-b-1)+n,bisect(x,y-a)+n
    while l<r:
        if l&1:
            e[i]+=l,
            l+=1
        if r&1:
            r-=1
            e[i]+=r,
        l>>=1
        r>>=1
    l,r=bisect(x,y+a-1)+n,bisect(x,y+b)+n
    while l<r:
        if l&1:
            e[i]+=l,
            l+=1
        if r&1:
            r-=1
            e[i]+=r,
        l>>=1
        r>>=1
a=[0]*n
for s in range(n,n+n):
    if a[s-n]:continue
    c=1
    f={s}
    q=[s]
    for v in q:
        for w in e[v]:
            if w in f:continue
            if w>=n:c+=1
            f|={w}
            q+=w,
    for v in f:
        if v>=n:a[v-n]=c
print('\n'.join(map(str,a)))
0