結果

問題 No.1170 Never Want to Walk
ユーザー uni_pythonuni_python
提出日時 2020-08-15 11:54:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,985 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 103,940 KB
最終ジャッジ日時 2024-10-10 17:31:19
合計ジャッジ時間 7,175 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 40 ms
52,992 KB
testcase_06 AC 39 ms
53,248 KB
testcase_07 AC 38 ms
52,992 KB
testcase_08 AC 38 ms
52,864 KB
testcase_09 AC 39 ms
52,992 KB
testcase_10 AC 38 ms
52,736 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 58 ms
66,560 KB
testcase_23 AC 67 ms
71,296 KB
testcase_24 AC 51 ms
63,616 KB
testcase_25 AC 56 ms
66,816 KB
testcase_26 AC 64 ms
69,368 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 164 ms
102,276 KB
testcase_33 AC 194 ms
103,152 KB
testcase_34 AC 415 ms
103,072 KB
testcase_35 AC 180 ms
103,344 KB
testcase_36 AC 222 ms
102,688 KB
testcase_37 AC 696 ms
103,052 KB
testcase_38 AC 230 ms
103,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    ################
    class UnionFind():
        """
        parents : 親要素(findしない場合は根ではないことの注意),根の場合は"-(要素数)"
        find(x):要素xの属するグループの根を返す
        size(x):要素xの属するグループの要素数を返す
        same(x,y):x,yが同じグループに属しているか返す
        重いかも!  members(x):要素xが属するグループに属する要素をリストで返す
        roots:全ての根の要素を返す
        group_count():グループの数を返す
        重いかも! all_group_members():{根要素:[そのグループに含まれる要素のリスト]}の辞書を返す
        """
        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
    
    mod=10**9+7
    N,A,B=MI()
    x=LI()
    uf=UnionFind(N)
    
    L=[0]*N#他から繋がられたか,繋がれたところからはスタートしなくて良い
    for i in range(N):
        if L[i]==0:
            
            #進行方向
            nl=bisect.bisect_left(x,x[i]+A)
            nr=bisect.bisect_right(x,x[i]+B)
            for j in range(nl,nr):
                uf.union(i,j)
                L[j]=1
                
            #逆向き
            nl=bisect.bisect_left(x,x[i]-B)
            nr=bisect.bisect_right(x,x[i]-A)
            for j in range(nl,nr):
                uf.union(i,j)
    
    for i in range(N):
        print(uf.size(i))
            
            
            
    

    
    


main()
0