結果

問題 No.1170 Never Want to Walk
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-08-15 11:06:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 109,860 KB
最終ジャッジ日時 2024-10-10 17:27:03
合計ジャッジ時間 8,730 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,880 KB
testcase_01 AC 43 ms
53,644 KB
testcase_02 AC 42 ms
52,876 KB
testcase_03 AC 44 ms
53,184 KB
testcase_04 AC 42 ms
52,912 KB
testcase_05 AC 42 ms
52,352 KB
testcase_06 AC 43 ms
52,344 KB
testcase_07 AC 43 ms
54,268 KB
testcase_08 AC 41 ms
53,640 KB
testcase_09 AC 43 ms
53,560 KB
testcase_10 AC 42 ms
52,936 KB
testcase_11 AC 43 ms
53,368 KB
testcase_12 AC 65 ms
69,508 KB
testcase_13 AC 66 ms
70,632 KB
testcase_14 AC 68 ms
70,056 KB
testcase_15 AC 66 ms
68,928 KB
testcase_16 AC 66 ms
69,452 KB
testcase_17 AC 70 ms
69,672 KB
testcase_18 AC 63 ms
67,744 KB
testcase_19 AC 62 ms
68,288 KB
testcase_20 AC 63 ms
70,108 KB
testcase_21 AC 61 ms
68,196 KB
testcase_22 AC 64 ms
70,368 KB
testcase_23 AC 64 ms
70,276 KB
testcase_24 AC 64 ms
71,004 KB
testcase_25 AC 64 ms
70,696 KB
testcase_26 AC 66 ms
71,416 KB
testcase_27 AC 370 ms
108,784 KB
testcase_28 AC 373 ms
108,432 KB
testcase_29 AC 398 ms
109,528 KB
testcase_30 AC 381 ms
108,736 KB
testcase_31 AC 377 ms
108,936 KB
testcase_32 AC 377 ms
109,128 KB
testcase_33 AC 391 ms
108,080 KB
testcase_34 AC 385 ms
109,772 KB
testcase_35 AC 392 ms
109,328 KB
testcase_36 AC 379 ms
108,532 KB
testcase_37 AC 369 ms
108,836 KB
testcase_38 AC 380 ms
109,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]

n,a,b = map(int,input().split())
x = [-float("INF")] + list(map(int,input().split())) + [float("INF")]
u = Unionfind(n+1)
imos = [0]*(n+2)
for i in range(1,n+1):
    l = bisect.bisect_left(x,x[i]+a)
    r = bisect.bisect_right(x,x[i]+b)
    if r > l:
        u.union(i,l)
        imos[l] += 1
        imos[r-1] -= 1

for i in range(1,n+1):
    imos[i] += imos[i-1]
    if imos[i] > 0:
        u.union(i,i+1)

for i in range(1,n+1):
    print(u.size(i))
0