結果

問題 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,150 ms / 2,000 ms
コード長 1,093 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-10-10 18:01:09
合計ジャッジ時間 16,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 35 ms
10,880 KB
testcase_13 AC 35 ms
10,752 KB
testcase_14 AC 35 ms
10,880 KB
testcase_15 AC 34 ms
11,008 KB
testcase_16 AC 34 ms
10,880 KB
testcase_17 AC 34 ms
10,880 KB
testcase_18 AC 34 ms
10,880 KB
testcase_19 AC 34 ms
10,880 KB
testcase_20 AC 33 ms
10,880 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 36 ms
11,008 KB
testcase_23 AC 35 ms
10,752 KB
testcase_24 AC 35 ms
10,624 KB
testcase_25 AC 34 ms
10,880 KB
testcase_26 AC 34 ms
10,752 KB
testcase_27 AC 1,131 ms
32,016 KB
testcase_28 AC 1,105 ms
31,712 KB
testcase_29 AC 1,138 ms
32,344 KB
testcase_30 AC 1,150 ms
32,376 KB
testcase_31 AC 1,122 ms
31,652 KB
testcase_32 AC 1,108 ms
31,920 KB
testcase_33 AC 1,118 ms
31,492 KB
testcase_34 AC 1,115 ms
32,256 KB
testcase_35 AC 1,126 ms
32,140 KB
testcase_36 AC 1,105 ms
31,556 KB
testcase_37 AC 1,081 ms
32,076 KB
testcase_38 AC 1,122 ms
32,532 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