結果

問題 No.1170 Never Want to Walk
ユーザー gr1msl3ygr1msl3y
提出日時 2022-05-18 21:18:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 668 ms / 2,000 ms
コード長 1,588 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 105,652 KB
最終ジャッジ日時 2024-09-17 00:52:03
合計ジャッジ時間 10,879 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,680 KB
testcase_01 AC 44 ms
54,608 KB
testcase_02 AC 44 ms
55,480 KB
testcase_03 AC 43 ms
54,852 KB
testcase_04 AC 43 ms
55,648 KB
testcase_05 AC 43 ms
55,688 KB
testcase_06 AC 44 ms
54,676 KB
testcase_07 AC 43 ms
54,136 KB
testcase_08 AC 44 ms
54,588 KB
testcase_09 AC 43 ms
54,376 KB
testcase_10 AC 43 ms
54,596 KB
testcase_11 AC 44 ms
54,384 KB
testcase_12 AC 66 ms
72,224 KB
testcase_13 AC 76 ms
76,040 KB
testcase_14 AC 74 ms
76,200 KB
testcase_15 AC 67 ms
72,500 KB
testcase_16 AC 69 ms
73,416 KB
testcase_17 AC 75 ms
76,012 KB
testcase_18 AC 67 ms
72,332 KB
testcase_19 AC 69 ms
73,848 KB
testcase_20 AC 76 ms
76,008 KB
testcase_21 AC 67 ms
72,188 KB
testcase_22 AC 75 ms
76,072 KB
testcase_23 AC 76 ms
75,764 KB
testcase_24 AC 70 ms
73,748 KB
testcase_25 AC 75 ms
76,004 KB
testcase_26 AC 79 ms
76,120 KB
testcase_27 AC 558 ms
105,436 KB
testcase_28 AC 523 ms
104,968 KB
testcase_29 AC 668 ms
105,216 KB
testcase_30 AC 544 ms
105,548 KB
testcase_31 AC 568 ms
105,372 KB
testcase_32 AC 435 ms
105,316 KB
testcase_33 AC 468 ms
105,348 KB
testcase_34 AC 440 ms
105,148 KB
testcase_35 AC 445 ms
104,920 KB
testcase_36 AC 422 ms
105,248 KB
testcase_37 AC 443 ms
105,652 KB
testcase_38 AC 420 ms
105,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from bisect import bisect_left
N, A, B = map(int, input().split())
X = list(map(int, input().split()))


class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1]*n
        self.rank = [0]*n

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            return self.find(self.parents[x])

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.rank[x] < self.rank[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1

    def root(self):
        return [i for i in range(self.n) if self.parents[i] < 0]

    def allgroup_members(self):
        members = defaultdict(set)
        for m in range(self.n):
            members[self.find(m)].add(m)
        return members


Y = [0]*N
uf = UnionFind(N)


def calc(l, r):
    resl = bisect_left(X, l)
    resr = bisect_left(X, r+1)
    return resl, resr


for i in range(N):
    x = X[i]
    l = calc(x-B, x-A)
    if l[1] > l[0]:
        uf.union(i, l[0])
        Y[l[0]] += 1
        Y[l[1]-1] -= 1
    r = calc(x+A, x+B)
    if r[0] < r[1]:
        uf.union(i, r[0])
        Y[r[0]] += 1
        Y[r[1]-1] -= 1

for i in range(N-1):
    Y[i+1] += Y[i]
for i in range(N-1):
    if Y[i]:
        uf.union(i, i+1)

ans = [uf.size(i) for i in range(N)]
print(*ans, sep='\n')
0