結果
問題 | No.1170 Never Want to Walk |
ユーザー | uni_python |
提出日時 | 2020-08-15 20:25:27 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 382 ms / 2,000 ms |
コード長 | 3,088 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 104,032 KB |
最終ジャッジ日時 | 2024-10-10 22:41:25 |
合計ジャッジ時間 | 7,861 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,864 KB |
testcase_01 | AC | 38 ms
52,608 KB |
testcase_02 | AC | 38 ms
52,608 KB |
testcase_03 | AC | 37 ms
52,608 KB |
testcase_04 | AC | 38 ms
52,608 KB |
testcase_05 | AC | 37 ms
52,224 KB |
testcase_06 | AC | 37 ms
52,992 KB |
testcase_07 | AC | 37 ms
52,736 KB |
testcase_08 | AC | 38 ms
52,736 KB |
testcase_09 | AC | 38 ms
52,608 KB |
testcase_10 | AC | 40 ms
53,120 KB |
testcase_11 | AC | 39 ms
52,608 KB |
testcase_12 | AC | 60 ms
67,072 KB |
testcase_13 | AC | 64 ms
68,992 KB |
testcase_14 | AC | 62 ms
69,120 KB |
testcase_15 | AC | 60 ms
67,712 KB |
testcase_16 | AC | 61 ms
68,096 KB |
testcase_17 | AC | 62 ms
69,200 KB |
testcase_18 | AC | 60 ms
66,816 KB |
testcase_19 | AC | 62 ms
68,224 KB |
testcase_20 | AC | 63 ms
68,992 KB |
testcase_21 | AC | 59 ms
67,072 KB |
testcase_22 | AC | 62 ms
68,992 KB |
testcase_23 | AC | 65 ms
70,528 KB |
testcase_24 | AC | 62 ms
69,248 KB |
testcase_25 | AC | 63 ms
68,864 KB |
testcase_26 | AC | 65 ms
70,144 KB |
testcase_27 | AC | 381 ms
103,108 KB |
testcase_28 | AC | 359 ms
103,312 KB |
testcase_29 | AC | 382 ms
103,832 KB |
testcase_30 | AC | 366 ms
103,472 KB |
testcase_31 | AC | 363 ms
103,260 KB |
testcase_32 | AC | 366 ms
103,072 KB |
testcase_33 | AC | 378 ms
102,304 KB |
testcase_34 | AC | 376 ms
104,032 KB |
testcase_35 | AC | 330 ms
103,908 KB |
testcase_36 | AC | 329 ms
103,068 KB |
testcase_37 | AC | 309 ms
102,984 KB |
testcase_38 | AC | 358 ms
103,184 KB |
ソースコード
import sys input=sys.stdin.readline def I(): return int(input()) def MI(): return map(int, input().split()) def LI(): return list(map(int, input().split())) def main(): ################ class UnionFind(): """ parents : 親要素(findしない場合は根ではないことの注意),根の場合は"-(要素数)" find(x):要素xの属するグループの根を返す size(x):要素xの属するグループの要素数を返す same(x,y):x,yが同じグループに属しているか返す 重いかも! members(x):要素xが属するグループに属する要素をリストで返す roots:全ての根の要素を返す group_count():グループの数を返す 重いかも! all_group_members():{根要素:[そのグループに含まれる要素のリスト]}の辞書を返す """ 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] def group_count(self): return len(self.roots()) def all_group_members(self): return {r: self.members(r) for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) ################ """ i番目からa~bまでそれぞれ編を貼ると大変 (i,a),(a,a+1),...,(b-1,b)に辺を張る,これはimos風にやる """ import bisect mod=10**9+7 N,A,B=MI() x=LI() uf=UnionFind(N) L=[0]*(N+1)#連番でどこまで繋いだか for i in range(N): nl=bisect.bisect_left(x,x[i]+A) nr=bisect.bisect_right(x,x[i]+B) if nl<N and nr>0: if nl!=nr: uf.union(i,nl) L[nl]+=1 L[nr-1]-=1 for i in range(N): L[i+1]+=L[i] # print(L) for i in range(N-1): if L[i]>0: uf.union(i,i+1) for i in range(N): print(uf.size(i)) main()