結果

問題 No.1170 Never Want to Walk
ユーザー stnkienstnkien
提出日時 2020-08-15 16:03:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,073 ms / 2,000 ms
コード長 1,093 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,608 KB
最終ジャッジ日時 2024-04-19 01:18:22
合計ジャッジ時間 15,606 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 33 ms
10,752 KB
testcase_06 AC 35 ms
10,624 KB
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 34 ms
10,752 KB
testcase_09 AC 35 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 39 ms
10,624 KB
testcase_13 AC 35 ms
10,752 KB
testcase_14 AC 37 ms
10,752 KB
testcase_15 AC 38 ms
10,880 KB
testcase_16 AC 36 ms
11,008 KB
testcase_17 AC 37 ms
10,752 KB
testcase_18 AC 38 ms
10,880 KB
testcase_19 AC 38 ms
10,752 KB
testcase_20 AC 35 ms
10,752 KB
testcase_21 AC 35 ms
10,880 KB
testcase_22 AC 39 ms
10,752 KB
testcase_23 AC 38 ms
10,880 KB
testcase_24 AC 38 ms
10,752 KB
testcase_25 AC 38 ms
10,624 KB
testcase_26 AC 40 ms
10,752 KB
testcase_27 AC 1,055 ms
31,892 KB
testcase_28 AC 1,058 ms
31,452 KB
testcase_29 AC 1,054 ms
32,212 KB
testcase_30 AC 1,073 ms
32,120 KB
testcase_31 AC 1,026 ms
31,524 KB
testcase_32 AC 983 ms
31,916 KB
testcase_33 AC 999 ms
31,492 KB
testcase_34 AC 999 ms
32,248 KB
testcase_35 AC 1,041 ms
32,392 KB
testcase_36 AC 987 ms
31,688 KB
testcase_37 AC 968 ms
31,948 KB
testcase_38 AC 1,006 ms
32,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as bil, bisect_right as bir

class UnionFind:
    def __init__(self, n=0):
        self.d = [-1]*n
        self.u = n
    def root(self, x):
        if self.d[x] < 0:
            return x
        self.d[x] = self.root(self.d[x])
        return self.d[x]
    def unite(self, x, y):
        x, y = self.root(x), self.root(y)
        if x == y:
            return False
        if x > y:
            x, y = y, x
        self.d[x] += self.d[y]
        self.d[y] = x
        self.u -= 1
        return True
    def same(self, x, y):
        return self.root(x) == self.root(y)
    def size(self, x):
        return -self.d[self.root(x)]
    def num_union(self):
        return self.u


N, A, B = map(int, input().split())
*X, = map(int, input().split())

uf = UnionFind(N)


lr = rr = -10**10

for i, x in enumerate(X):
    ll = max(lr, bil(X, x-B))
    rl = max(rr, bil(X, x+A))
    lr = bir(X, x-A)
    rr = bir(X, x+B)

    for j in range(ll, lr):
        uf.unite(i, j)
    for j in range(rl, rr):
        uf.unite(i, j)

for i in range(N):
    print(uf.size(i))
0