結果

問題 No.1170 Never Want to Walk
ユーザー tktk_snsntktk_snsn
提出日時 2020-08-14 22:29:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 797 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 132,320 KB
最終ジャッジ日時 2024-10-10 15:50:37
合計ジャッジ時間 12,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,272 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 40 ms
54,656 KB
testcase_03 AC 40 ms
54,400 KB
testcase_04 AC 40 ms
54,016 KB
testcase_05 AC 40 ms
54,784 KB
testcase_06 AC 40 ms
53,888 KB
testcase_07 AC 41 ms
54,784 KB
testcase_08 AC 41 ms
54,784 KB
testcase_09 AC 40 ms
54,192 KB
testcase_10 AC 41 ms
53,888 KB
testcase_11 AC 41 ms
54,572 KB
testcase_12 AC 70 ms
73,208 KB
testcase_13 AC 77 ms
76,032 KB
testcase_14 AC 76 ms
75,776 KB
testcase_15 AC 68 ms
72,832 KB
testcase_16 AC 71 ms
74,496 KB
testcase_17 AC 77 ms
75,904 KB
testcase_18 AC 67 ms
72,704 KB
testcase_19 AC 76 ms
75,776 KB
testcase_20 AC 77 ms
76,416 KB
testcase_21 AC 68 ms
73,088 KB
testcase_22 AC 77 ms
76,288 KB
testcase_23 AC 76 ms
75,812 KB
testcase_24 AC 78 ms
75,912 KB
testcase_25 AC 80 ms
75,776 KB
testcase_26 AC 78 ms
76,176 KB
testcase_27 AC 676 ms
130,408 KB
testcase_28 AC 695 ms
129,640 KB
testcase_29 AC 797 ms
132,320 KB
testcase_30 AC 686 ms
131,252 KB
testcase_31 AC 708 ms
129,564 KB
testcase_32 AC 570 ms
129,752 KB
testcase_33 AC 694 ms
130,768 KB
testcase_34 AC 607 ms
130,236 KB
testcase_35 AC 631 ms
129,916 KB
testcase_36 AC 566 ms
129,956 KB
testcase_37 AC 591 ms
129,752 KB
testcase_38 AC 591 ms
130,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
from collections import deque


class UF_tree:
    def __init__(self, n):
        self.root = [-1] * (n + 1)  # -1ならそのノードが根,で絶対値が木の要素数
        self.rank = [0] * (n + 1)

    def find(self, x):  # xの根となる要素番号を返す
        if self.root[x] < 0:
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def isSame(self, x, y):
        return self.find(x) == self.find(y)

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        elif self.rank[x] < self.rank[y]:
            self.root[y] += self.root[x]
            self.root[x] = y
        else:
            self.root[x] += self.root[y]
            self.root[y] = x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1

    def size(self, x):
        return -self.root[self.find(x)]


N, A, B = map(int, input().split())
X = list(map(int, input().split()))
uf = UF_tree(N)

upper = []
lower = []
for i, xi in enumerate(X):
    l = bisect.bisect_left(X, xi + A)
    r = bisect.bisect_right(X, xi + B)
    if l < r:
        uf.unite(i, l)
    upper.append((l, r))

    l = bisect.bisect_left(X, xi - B)
    r = bisect.bisect_right(X, xi - A)
    if l < r:
        uf.unite(i, l)
    lower.append((l, r))


for p, q in zip(range(N - 1), range(1, N)):
    _, pr = upper[p]
    ql, _ = upper[q]
    if pr > ql:
        uf.unite(p, q)
    _, pr = lower[p]
    ql, _ = lower[q]
    if pr > ql:
        uf.unite(p, q)

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