結果

問題 No.1170 Never Want to Walk
ユーザー しーあるしーある
提出日時 2020-08-15 08:00:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 989 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 268,560 KB
最終ジャッジ日時 2024-10-10 17:14:55
合計ジャッジ時間 11,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 29 ms
10,880 KB
testcase_12 AC 33 ms
11,264 KB
testcase_13 AC 34 ms
11,392 KB
testcase_14 AC 34 ms
11,392 KB
testcase_15 AC 33 ms
11,008 KB
testcase_16 AC 35 ms
11,264 KB
testcase_17 AC 34 ms
11,264 KB
testcase_18 AC 33 ms
11,264 KB
testcase_19 AC 33 ms
11,136 KB
testcase_20 AC 36 ms
11,392 KB
testcase_21 AC 33 ms
11,008 KB
testcase_22 AC 39 ms
11,648 KB
testcase_23 AC 38 ms
11,392 KB
testcase_24 AC 38 ms
11,520 KB
testcase_25 AC 39 ms
11,392 KB
testcase_26 AC 39 ms
11,648 KB
testcase_27 AC 1,263 ms
110,676 KB
testcase_28 AC 1,266 ms
111,016 KB
testcase_29 AC 1,195 ms
106,820 KB
testcase_30 AC 1,282 ms
112,584 KB
testcase_31 AC 1,238 ms
108,716 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import*
def main():
    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)))
main()
0