結果

問題 No.1170 Never Want to Walk
ユーザー ああああああ
提出日時 2024-08-19 19:35:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 974 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 35,820 KB
最終ジャッジ日時 2024-08-19 19:35:56
合計ジャッジ時間 8,214 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 28 ms
11,008 KB
testcase_02 AC 26 ms
11,008 KB
testcase_03 AC 26 ms
11,008 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 28 ms
11,008 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 34 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 31 ms
11,136 KB
testcase_13 AC 29 ms
11,008 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 30 ms
11,008 KB
testcase_16 AC 30 ms
11,008 KB
testcase_17 AC 30 ms
11,008 KB
testcase_18 AC 30 ms
11,008 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 30 ms
11,008 KB
testcase_21 AC 30 ms
11,136 KB
testcase_22 AC 37 ms
11,008 KB
testcase_23 AC 35 ms
11,008 KB
testcase_24 AC 35 ms
11,008 KB
testcase_25 AC 37 ms
11,136 KB
testcase_26 AC 34 ms
11,008 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 898 ms
32,416 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

N,A,B = map(int, input().split())
x = list(map(int, input().split()))
par = [ i for i in range(N)]
siz = [ 1 for i in range(N)]
def root(x):
    if par[x] == x:
        return x
    else:
        par[x] = root(par[x])
        return par[x]

def same(x,y):
    return root(x) == root(y)

def unite(x,y):
    x = root(x)
    y = root(y)
    if x == y:
        return
    if siz[x] < siz[y]:
        x,y = y,x
    par[x] = y
    siz[y] += siz[x]

def size(x):
    return siz[root(x)]

united = [False for i in range(N)]

for i in range(N):
    if united[i]:
        continue
    ll = bisect.bisect_left(x,x[i]-B)
    lr = bisect.bisect_right(x,x[i]-A)
    rl = bisect.bisect_left(x,x[i]+A)
    rr = bisect.bisect_right(x,x[i]+B)
    for j in range(ll,lr):
        unite(i,j)
        if j < lr - 1:
            united[j] = True
    for j in range(rl,rr):
        unite(i,j)
        if j < rr - 1:
            united[j] = True
for i in range(N):
    print(size(i))
0