結果
問題 | No.1170 Never Want to Walk |
ユーザー | いた |
提出日時 | 2024-12-30 18:49:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 2,458 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 187,788 KB |
最終ジャッジ日時 | 2024-12-30 18:49:41 |
合計ジャッジ時間 | 27,859 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
59,264 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 49 ms
175,524 KB |
testcase_06 | AC | 49 ms
59,264 KB |
testcase_07 | AC | 52 ms
175,096 KB |
testcase_08 | WA | - |
testcase_09 | AC | 52 ms
174,952 KB |
testcase_10 | AC | 51 ms
59,008 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 114 ms
76,160 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | TLE | - |
ソースコード
import bisect from collections import deque N,A,B=map(int,input().split()) x=list(map(int,input().split())) x.sort() ne=[-1]*N def root(N): if ne[N]<0: return N else: ne[N]=root(ne[N]) return ne[N] def merge(x,y): x,y=root(x),root(y) if ne[x]>ne[y]: x,y=y,x ne[x]+=ne[y] ne[y]=x def same(x,y): return root(x)==root(y) q=deque() stp=set() for i in range(N): if i in stp: continue eru=bisect.bisect_left(x,x[i]+A) aru=bisect.bisect_right(x,x[i]+B) for v in range(eru,aru): if same(i,v) or v in stp: continue stp.add(v) merge(i,v) q.append(v) while q: n=q.popleft() eru=bisect.bisect_left(x,x[n]+A) aru=bisect.bisect_right(x,x[n]+B) for v in range(eru,aru): if same(n,v) or v in stp: continue stp.add(v) merge(n,v) q.append(v) for i in range(N): print(-ne[root(i)])