結果

問題 No.1170 Never Want to Walk
ユーザー ああああああ
提出日時 2024-08-19 19:23:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 970 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 35,816 KB
最終ジャッジ日時 2024-08-19 19:23:48
合計ジャッジ時間 10,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 WA -
testcase_05 AC 27 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 40 ms
11,136 KB
testcase_23 AC 38 ms
11,008 KB
testcase_24 AC 36 ms
11,008 KB
testcase_25 AC 40 ms
11,008 KB
testcase_26 AC 34 ms
11,008 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
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)
        united[i] = True
        united[j] = True
    for j in range(rl,rr):
        unite(i,j)
        united[i] = True
        united[j] = True
for i in range(N):
    print(size(i))
0