結果

問題 No.1170 Never Want to Walk
ユーザー stngstng
提出日時 2022-09-18 16:56:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,344 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 100,496 KB
最終ジャッジ日時 2024-06-01 15:36:38
合計ジャッジ時間 8,286 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
61,628 KB
testcase_01 AC 41 ms
53,512 KB
testcase_02 AC 41 ms
54,212 KB
testcase_03 AC 41 ms
53,580 KB
testcase_04 AC 40 ms
53,016 KB
testcase_05 AC 42 ms
53,028 KB
testcase_06 AC 42 ms
54,212 KB
testcase_07 AC 42 ms
52,388 KB
testcase_08 AC 41 ms
52,776 KB
testcase_09 AC 40 ms
52,872 KB
testcase_10 AC 41 ms
53,016 KB
testcase_11 AC 42 ms
54,148 KB
testcase_12 AC 65 ms
69,028 KB
testcase_13 AC 73 ms
72,736 KB
testcase_14 AC 73 ms
73,800 KB
testcase_15 AC 65 ms
68,992 KB
testcase_16 AC 66 ms
70,408 KB
testcase_17 AC 81 ms
76,228 KB
testcase_18 AC 61 ms
68,732 KB
testcase_19 AC 66 ms
70,644 KB
testcase_20 AC 79 ms
76,212 KB
testcase_21 AC 63 ms
68,996 KB
testcase_22 AC 76 ms
73,336 KB
testcase_23 AC 83 ms
76,612 KB
testcase_24 AC 82 ms
75,384 KB
testcase_25 AC 74 ms
73,456 KB
testcase_26 AC 86 ms
76,512 KB
testcase_27 AC 300 ms
100,420 KB
testcase_28 AC 290 ms
100,384 KB
testcase_29 AC 313 ms
98,700 KB
testcase_30 AC 315 ms
98,944 KB
testcase_31 AC 309 ms
100,496 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        self.size = [1 for _ in range(n+1)]
    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    # 併合
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n,a,b = map(int,input().split())
x = [int(i) for i in input().split()]

ki = UnionFind(n+1)

for i in range(n):
    ia = bisect.bisect_left(x,x[i]+a)
    ib = bisect.bisect_right(x,x[i]+b)
    #print(i,ia,"srt")
    for j in range(ib-ia):
        if not ki.same_check(i,ia+j):
            ki.union(i,ia+j)
            #print(i,ia+j)
#ki.union(1,5)
li = [0]*n
num = [0]*n

for i in range(n):
    tmp = ki.find(i)
    li[i] = tmp
    num[tmp] += 1
    #print(ki.find(i),"find")

for i in range(n):
    print(num[li[i]])
0