結果

問題 No.1170 Never Want to Walk
ユーザー qumazakiqumazaki
提出日時 2020-09-05 20:02:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,177 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 87,276 KB
実行使用メモリ 138,040 KB
最終ジャッジ日時 2023-08-19 13:00:32
合計ジャッジ時間 8,412 ms
ジャッジサーバーID
(参考情報)
judge14 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 71 ms
71,044 KB
testcase_03 WA -
testcase_04 AC 70 ms
71,328 KB
testcase_05 WA -
testcase_06 AC 73 ms
71,424 KB
testcase_07 AC 72 ms
71,428 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 69 ms
71,324 KB
testcase_11 AC 73 ms
71,308 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 84 ms
75,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 85 ms
75,840 KB
testcase_23 AC 85 ms
75,852 KB
testcase_24 AC 85 ms
75,484 KB
testcase_25 AC 88 ms
75,432 KB
testcase_26 AC 86 ms
75,716 KB
testcase_27 AC 365 ms
135,792 KB
testcase_28 AC 335 ms
135,056 KB
testcase_29 AC 396 ms
136,924 KB
testcase_30 AC 335 ms
136,596 KB
testcase_31 AC 329 ms
134,780 KB
testcase_32 AC 256 ms
135,484 KB
testcase_33 AC 295 ms
135,276 KB
testcase_34 AC 282 ms
137,056 KB
testcase_35 AC 276 ms
136,704 KB
testcase_36 AC 270 ms
135,528 KB
testcase_37 AC 287 ms
136,456 KB
testcase_38 AC 279 ms
138,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9)

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

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

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

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

    def union(self,x,y):
        x_root = self.find(x)
        y_root = self.find(y)
        if(x_root == y_root):
            return

        if( self.parents[x_root] <= self.parents[y_root] ):
            self.parents[x_root] += self.parents[y_root]
            self.parents[y_root] = x_root
        else:
            self.parents[y_root] += self.parents[x_root]
            self.parents[x_root] = y_root

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

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

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

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

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

cango = [[0,0,0,0] for _ in range(n)]
ll,l,r,rr = 0,0,0,0
for i,xi in enumerate(x):
    while(x[ll] < xi-b):
        ll += 1
    while(x[l] < xi-a):
        l += 1
    if(r < n-1):
        while(x[r] < xi+a):
            r += 1
            if(r==n-1):
                break
    if(rr < n):
        while(x[rr] < xi+b):
            rr += 1
            if(rr==n):
                break
    cango[i] = [ll,l,r,rr]

uf = UnionFind(n)
for i in range(n):
    r,rr = cango[i][2:4]
    for j in range(rr-1,r-1,-1):
        if(uf.same(i,j)):
            break
        uf.union(i,j)

for i in range(n-1,-1,-1):
    ll,l = cango[i][0:2]
    for j in range(ll,l):
        if(uf.same(i,j)):
            break
        uf.union(i,j)

ans = [0] * n
for i in range(n):
    ans[i] = uf.size(i)

print('\n'.join(map(str,ans)))
0