結果

問題 No.1170 Never Want to Walk
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-08-14 22:08:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,717 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 37,496 KB
最終ジャッジ日時 2024-10-10 15:26:04
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
16,384 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 32 ms
11,136 KB
testcase_03 AC 32 ms
11,136 KB
testcase_04 AC 32 ms
11,008 KB
testcase_05 AC 36 ms
11,136 KB
testcase_06 AC 32 ms
11,008 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 32 ms
11,136 KB
testcase_09 AC 32 ms
11,136 KB
testcase_10 AC 32 ms
11,136 KB
testcase_11 AC 32 ms
11,136 KB
testcase_12 AC 36 ms
11,136 KB
testcase_13 AC 37 ms
11,008 KB
testcase_14 AC 37 ms
11,008 KB
testcase_15 AC 36 ms
11,136 KB
testcase_16 AC 37 ms
11,008 KB
testcase_17 AC 37 ms
11,136 KB
testcase_18 AC 35 ms
11,136 KB
testcase_19 AC 36 ms
11,136 KB
testcase_20 AC 39 ms
11,008 KB
testcase_21 AC 36 ms
11,008 KB
testcase_22 AC 43 ms
11,136 KB
testcase_23 AC 40 ms
11,136 KB
testcase_24 AC 45 ms
11,136 KB
testcase_25 AC 43 ms
11,136 KB
testcase_26 AC 42 ms
11,008 KB
testcase_27 AC 1,563 ms
32,084 KB
testcase_28 AC 1,640 ms
31,788 KB
testcase_29 AC 1,360 ms
32,544 KB
testcase_30 AC 1,600 ms
32,496 KB
testcase_31 AC 1,521 ms
31,852 KB
testcase_32 TLE -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

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

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

    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        return len(self.roots())

    def all_group_members(self):
        return {r: self.members(r) for r in self.roots()}

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

import bisect

n,a,b = map(int,input().split())
x = list(map(int,input().split()))

uf = UnionFind(n+1)

for i in range(n):
    
    A = bisect.bisect_left(x,x[i]+a)
    B = bisect.bisect_left(x,x[i]+b)
    
    
    for j in range(A,B+1):
        if i == j:
            pass
        
        if A < n and j < n:
            if j != A and a <= abs(x[j]-x[A]) <= b:
                break
        
        
        if j >= n:
            break

        if a <= abs(x[i]-x[j]) <= b:
            uf.union(i,j)
            
for i in range(n):
    print(uf.size(i))
0