結果

問題 No.1170 Never Want to Walk
ユーザー titiatitia
提出日時 2020-08-14 22:44:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 109,412 KB
最終ジャッジ日時 2024-10-10 16:05:20
合計ジャッジ時間 8,353 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 38 ms
52,864 KB
testcase_04 AC 38 ms
52,704 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
52,864 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 37 ms
52,480 KB
testcase_09 AC 37 ms
52,992 KB
testcase_10 AC 36 ms
52,992 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 63 ms
69,120 KB
testcase_13 AC 73 ms
72,448 KB
testcase_14 AC 73 ms
72,612 KB
testcase_15 AC 66 ms
69,376 KB
testcase_16 AC 66 ms
70,784 KB
testcase_17 AC 68 ms
71,936 KB
testcase_18 AC 63 ms
68,736 KB
testcase_19 AC 68 ms
71,168 KB
testcase_20 AC 68 ms
72,320 KB
testcase_21 AC 65 ms
69,504 KB
testcase_22 AC 66 ms
72,576 KB
testcase_23 AC 68 ms
73,344 KB
testcase_24 AC 67 ms
73,600 KB
testcase_25 AC 74 ms
72,576 KB
testcase_26 AC 70 ms
72,832 KB
testcase_27 AC 429 ms
103,724 KB
testcase_28 AC 400 ms
104,056 KB
testcase_29 AC 451 ms
102,808 KB
testcase_30 AC 514 ms
104,600 KB
testcase_31 AC 438 ms
103,332 KB
testcase_32 AC 304 ms
107,696 KB
testcase_33 AC 422 ms
109,412 KB
testcase_34 AC 363 ms
107,204 KB
testcase_35 AC 402 ms
107,676 KB
testcase_36 AC 354 ms
108,816 KB
testcase_37 AC 315 ms
107,504 KB
testcase_38 AC 326 ms
108,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
import bisect

N,a,b=map(int,input().split())
X=list(map(int,input().split()))

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

s=t=-1
for i in range(N):
    s2=bisect.bisect_left(X,X[i]+a)
    t2=bisect.bisect_right(X,X[i]+b)

    if s2<t:
        Union(i,i-1)
        for j in range(t,t2):
            Union(i,j)

    else:
        for j in range(s2,t2):
            Union(i,j)

    s=s2
    t=t2

ALIST=[[] for i in range(N)]

for i in range(N):
    ALIST[find(i)].append(i)

ANS=[-1]*N

for i in range(N):
    for a in ALIST[i]:
        ANS[a]=len(ALIST[i])

for a in ANS:
    print(a)
0