結果

問題 No.1170 Never Want to Walk
ユーザー ayaoniayaoni
提出日時 2020-11-22 13:56:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 1,727 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 110,364 KB
最終ジャッジ日時 2024-07-23 16:28:12
合計ジャッジ時間 8,738 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 39 ms
52,864 KB
testcase_04 AC 39 ms
52,736 KB
testcase_05 AC 39 ms
52,992 KB
testcase_06 AC 39 ms
52,736 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,992 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 63 ms
67,840 KB
testcase_13 AC 68 ms
71,040 KB
testcase_14 AC 66 ms
70,528 KB
testcase_15 AC 63 ms
67,968 KB
testcase_16 AC 69 ms
71,040 KB
testcase_17 AC 72 ms
73,344 KB
testcase_18 AC 61 ms
67,200 KB
testcase_19 AC 64 ms
69,120 KB
testcase_20 AC 69 ms
72,064 KB
testcase_21 AC 62 ms
68,352 KB
testcase_22 AC 68 ms
71,168 KB
testcase_23 AC 69 ms
71,936 KB
testcase_24 AC 70 ms
72,704 KB
testcase_25 AC 69 ms
72,064 KB
testcase_26 AC 68 ms
71,936 KB
testcase_27 AC 296 ms
110,236 KB
testcase_28 AC 289 ms
109,508 KB
testcase_29 AC 324 ms
110,328 KB
testcase_30 AC 297 ms
110,344 KB
testcase_31 AC 303 ms
109,644 KB
testcase_32 AC 266 ms
110,248 KB
testcase_33 AC 260 ms
109,132 KB
testcase_34 AC 272 ms
110,364 KB
testcase_35 AC 286 ms
109,876 KB
testcase_36 AC 261 ms
109,280 KB
testcase_37 AC 260 ms
110,196 KB
testcase_38 AC 269 ms
110,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from bisect import bisect_left,bisect_right
from itertools import accumulate
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


class UnionFind:
    def __init__(self,n):
        self.par = [i for i in range(n+1)]  # 親のノード番号
        self.rank = [0]*(n+1)
        self.C = [1]*(n+1)

    def find(self,x):  # xの根のノード番号
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]

    def same_check(self,x,y):  # x,yが同じグループか否か
        return self.find(x) == self.find(y)

    def unite(self,x,y):  # x,yの属するグループの併合
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            x,y = y,x
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
        self.par[y] = x
        self.C[x] += self.C[y]


N,A,B = MI()
X = [-1]+LI()
Y = [0]*(N+2)

UF = UnionFind(N+1)
for i in range(1,N+1):
    x = X[i]
    ng,ok = i,N+1
    while ng+1 < ok:
        mid = (ng+ok)//2
        if X[mid] >= x+A:
            ok = mid
        else:
            ng = mid
    left = ok
    ok,ng = i,N+1
    while ok+1 < ng:
        mid = (ok+ng)//2
        if X[mid] <= x+B:
            ok = mid
        else:
            ng = mid
    right = ok
    if left <= right:
        if not UF.same_check(i,left):
            UF.unite(i,left)
        Y[left] += 1
        Y[right] -= 1

Y = list(accumulate(Y))
for i in range(1,N+1):
    if Y[i] > 0 and not UF.same_check(i,i+1):
        UF.unite(i,i+1)

for i in range(1,N+1):
    print(UF.C[UF.find(i)])
0