結果

問題 No.1170 Never Want to Walk
ユーザー とりゐとりゐ
提出日時 2022-04-19 18:59:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 103,876 KB
最終ジャッジ日時 2024-06-10 16:59:40
合計ジャッジ時間 9,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,740 KB
testcase_01 AC 38 ms
54,172 KB
testcase_02 AC 36 ms
53,936 KB
testcase_03 AC 35 ms
55,968 KB
testcase_04 AC 35 ms
54,024 KB
testcase_05 AC 40 ms
54,660 KB
testcase_06 AC 39 ms
55,068 KB
testcase_07 AC 39 ms
55,372 KB
testcase_08 AC 35 ms
53,884 KB
testcase_09 AC 36 ms
54,512 KB
testcase_10 AC 35 ms
55,172 KB
testcase_11 AC 36 ms
55,648 KB
testcase_12 AC 54 ms
68,164 KB
testcase_13 AC 54 ms
70,048 KB
testcase_14 AC 56 ms
69,940 KB
testcase_15 AC 54 ms
68,844 KB
testcase_16 AC 55 ms
70,252 KB
testcase_17 AC 56 ms
69,796 KB
testcase_18 AC 55 ms
68,280 KB
testcase_19 AC 54 ms
68,808 KB
testcase_20 AC 55 ms
70,136 KB
testcase_21 AC 54 ms
68,344 KB
testcase_22 AC 58 ms
70,992 KB
testcase_23 AC 57 ms
71,020 KB
testcase_24 AC 57 ms
70,752 KB
testcase_25 AC 57 ms
70,264 KB
testcase_26 AC 57 ms
71,888 KB
testcase_27 AC 322 ms
103,428 KB
testcase_28 AC 317 ms
103,484 KB
testcase_29 AC 351 ms
103,432 KB
testcase_30 AC 336 ms
103,516 KB
testcase_31 AC 319 ms
102,732 KB
testcase_32 AC 375 ms
103,116 KB
testcase_33 AC 332 ms
102,776 KB
testcase_34 AC 326 ms
103,716 KB
testcase_35 AC 337 ms
103,876 KB
testcase_36 AC 292 ms
103,724 KB
testcase_37 AC 322 ms
103,496 KB
testcase_38 AC 330 ms
103,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

#UnionFind
from collections import defaultdict

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]

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

unite=[0]*n
uf=UnionFind(n)
for i in range(n):
  L=bisect.bisect_left(x,x[i]+a)
  R=bisect.bisect_left(x,x[i]+b+1)
  if L!=R:
    uf.union(i,L)
    unite[L]+=1
    unite[R-1]-=1

for i in range(n-1):
  if i:
    unite[i]+=unite[i-1]
  if unite[i]:
    uf.union(i,i+1)

for i in range(n):
  print(uf.size(i))
0