結果

問題 No.1170 Never Want to Walk
ユーザー chineristACchineristAC
提出日時 2020-08-14 21:47:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,384 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 109,748 KB
最終ジャッジ日時 2024-10-10 14:55:12
合計ジャッジ時間 8,337 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,728 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 37 ms
53,120 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 39 ms
52,864 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 63 ms
66,944 KB
testcase_13 AC 73 ms
70,272 KB
testcase_14 AC 70 ms
70,400 KB
testcase_15 AC 61 ms
67,712 KB
testcase_16 AC 64 ms
68,096 KB
testcase_17 AC 67 ms
70,272 KB
testcase_18 AC 61 ms
67,584 KB
testcase_19 AC 63 ms
68,992 KB
testcase_20 AC 72 ms
73,088 KB
testcase_21 AC 61 ms
67,200 KB
testcase_22 AC 72 ms
72,576 KB
testcase_23 AC 71 ms
72,704 KB
testcase_24 AC 81 ms
73,472 KB
testcase_25 AC 72 ms
71,680 KB
testcase_26 AC 78 ms
74,036 KB
testcase_27 AC 366 ms
103,488 KB
testcase_28 AC 350 ms
103,244 KB
testcase_29 AC 452 ms
103,772 KB
testcase_30 AC 372 ms
104,084 KB
testcase_31 AC 396 ms
103,124 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

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

    def range_unite(self,l,r):
        for i in range(l,r):
            self.unite(i,i+1)

import bisect

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

uf=UnionFindVerSize(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)
        uf.range_unite(idL,idR)

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