結果

問題 No.1170 Never Want to Walk
ユーザー chineristACchineristAC
提出日時 2020-08-14 21:52:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 105,656 KB
最終ジャッジ日時 2024-10-10 15:03:38
合計ジャッジ時間 8,140 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,204 KB
testcase_01 AC 39 ms
54,256 KB
testcase_02 AC 37 ms
53,688 KB
testcase_03 AC 37 ms
53,416 KB
testcase_04 AC 38 ms
52,812 KB
testcase_05 AC 38 ms
52,948 KB
testcase_06 AC 37 ms
53,336 KB
testcase_07 AC 38 ms
52,964 KB
testcase_08 AC 37 ms
53,084 KB
testcase_09 AC 38 ms
54,236 KB
testcase_10 AC 38 ms
53,272 KB
testcase_11 AC 38 ms
53,660 KB
testcase_12 AC 60 ms
67,216 KB
testcase_13 AC 64 ms
70,860 KB
testcase_14 AC 63 ms
70,004 KB
testcase_15 AC 60 ms
68,132 KB
testcase_16 AC 61 ms
68,640 KB
testcase_17 AC 63 ms
69,572 KB
testcase_18 AC 61 ms
67,900 KB
testcase_19 AC 62 ms
69,440 KB
testcase_20 AC 64 ms
70,044 KB
testcase_21 AC 60 ms
68,340 KB
testcase_22 AC 64 ms
69,824 KB
testcase_23 AC 66 ms
70,584 KB
testcase_24 AC 63 ms
70,368 KB
testcase_25 AC 63 ms
70,060 KB
testcase_26 AC 66 ms
70,840 KB
testcase_27 AC 373 ms
104,984 KB
testcase_28 AC 372 ms
104,792 KB
testcase_29 AC 398 ms
105,292 KB
testcase_30 AC 388 ms
105,112 KB
testcase_31 AC 379 ms
104,788 KB
testcase_32 AC 376 ms
104,620 KB
testcase_33 AC 390 ms
104,632 KB
testcase_34 AC 395 ms
105,300 KB
testcase_35 AC 350 ms
105,408 KB
testcase_36 AC 345 ms
104,860 KB
testcase_37 AC 334 ms
104,652 KB
testcase_38 AC 377 ms
105,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFindVerSize():
    def __init__(self, N):
        self._parent = [n for n in range(0, N)]
        self._size = [1] * N

    def find_root(self, x):
        if self._parent[x] == x: return x
        self._parent[x] = self.find_root(self._parent[x])
        return self._parent[x]

    def unite(self, x, y):
        gx = self.find_root(x)
        gy = self.find_root(y)
        if gx == gy: return

        if self._size[gx] < self._size[gy]:
            self._parent[gx] = gy
            self._size[gy] += self._size[gx]
        else:
            self._parent[gy] = gx
            self._size[gx] += self._size[gy]

    def get_size(self, x):
        return self._size[self.find_root(x)]

    def is_same_group(self, x, y):
        return self.find_root(x) == self.find_root(y)

    def calc_group_num(self):
        N = len(self._parent)
        ans = 0
        for i in range(N):
            if self.find_root(i) == i:
                ans += 1
        return ans


import bisect

N,A,B=map(int,input().split())
x=list(map(int,input().split()))

uf=UnionFindVerSize(N)
data=[0]*N
for i in range(N):
    idL=bisect.bisect_left(x,x[i]+A)
    idR=bisect.bisect_right(x,x[i]+B)-1
    if idL<=idR:
        uf.unite(i,idL)
        data[idL]+=1
        data[idR]-=1


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

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