結果
問題 | No.1170 Never Want to Walk |
ユーザー | anagohirame |
提出日時 | 2020-08-14 22:21:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 511 ms / 2,000 ms |
コード長 | 1,222 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 104,408 KB |
最終ジャッジ日時 | 2024-10-10 15:43:11 |
合計ジャッジ時間 | 8,328 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,120 KB |
testcase_01 | AC | 38 ms
52,904 KB |
testcase_02 | AC | 37 ms
53,120 KB |
testcase_03 | AC | 36 ms
52,736 KB |
testcase_04 | AC | 36 ms
52,352 KB |
testcase_05 | AC | 40 ms
52,536 KB |
testcase_06 | AC | 38 ms
52,736 KB |
testcase_07 | AC | 38 ms
52,352 KB |
testcase_08 | AC | 36 ms
52,864 KB |
testcase_09 | AC | 39 ms
52,608 KB |
testcase_10 | AC | 37 ms
52,736 KB |
testcase_11 | AC | 37 ms
52,480 KB |
testcase_12 | AC | 58 ms
67,968 KB |
testcase_13 | AC | 64 ms
70,400 KB |
testcase_14 | AC | 64 ms
71,552 KB |
testcase_15 | AC | 61 ms
68,480 KB |
testcase_16 | AC | 62 ms
69,376 KB |
testcase_17 | AC | 63 ms
70,272 KB |
testcase_18 | AC | 56 ms
66,688 KB |
testcase_19 | AC | 61 ms
68,992 KB |
testcase_20 | AC | 65 ms
71,808 KB |
testcase_21 | AC | 59 ms
67,712 KB |
testcase_22 | AC | 63 ms
71,296 KB |
testcase_23 | AC | 70 ms
73,984 KB |
testcase_24 | AC | 65 ms
72,704 KB |
testcase_25 | AC | 67 ms
71,296 KB |
testcase_26 | AC | 68 ms
72,320 KB |
testcase_27 | AC | 447 ms
103,524 KB |
testcase_28 | AC | 421 ms
103,396 KB |
testcase_29 | AC | 477 ms
104,408 KB |
testcase_30 | AC | 511 ms
103,600 KB |
testcase_31 | AC | 444 ms
103,308 KB |
testcase_32 | AC | 357 ms
103,264 KB |
testcase_33 | AC | 396 ms
103,304 KB |
testcase_34 | AC | 390 ms
104,024 KB |
testcase_35 | AC | 390 ms
103,836 KB |
testcase_36 | AC | 351 ms
103,756 KB |
testcase_37 | AC | 370 ms
103,720 KB |
testcase_38 | AC | 344 ms
104,044 KB |
ソースコード
from bisect import bisect, bisect_left import sys def input(): return sys.stdin.readline()[:-1] class UnionFind(): def __init__(self, size): self.table = [-1 for _ in range(size)] self.size = [1 for _ in range(size)] def find(self, x): while self.table[x] >= 0: if self.table[self.table[x]] >= 0: self.table[x] = self.table[self.table[x]] x = self.table[x] return x def unite(self, x, y): s1 = self.find(x) s2 = self.find(y) if s1 == s2: return False else: if self.table[s1] > self.table[s2]: self.table[s2] = s1 self.table[s1] -= 1 self.size[s1] += self.size[s2] self.size[s2] = 0 else: self.table[s1] = s2 self.table[s2] -= 1 self.size[s2] += self.size[s1] self.size[s1] = 0 return True def get_size(self, x): return self.size[self.find(x)] n, a, b = map(int, input().split()) x = list(map(int, input().split())) uf = UnionFind(n) rm = -1 for i in range(n): l = bisect_left(x, x[i]+a) r = bisect(x, x[i]+b) #print(l, r) if l == r or l == n: continue uf.unite(i, l) for j in range(max(l, rm), r-1): if uf.find(j) != uf.find(j+1): uf.unite(j, j+1) else: break rm = r-1 print(*[uf.get_size(i) for i in range(n)], sep="\n")