結果
問題 | No.1170 Never Want to Walk |
ユーザー | titia |
提出日時 | 2020-08-14 22:40:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,126 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 81,912 KB |
実行使用メモリ | 109,232 KB |
最終ジャッジ日時 | 2024-10-10 16:02:26 |
合計ジャッジ時間 | 9,232 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,728 KB |
testcase_01 | AC | 38 ms
52,608 KB |
testcase_02 | AC | 37 ms
52,352 KB |
testcase_03 | AC | 38 ms
52,608 KB |
testcase_04 | AC | 38 ms
52,608 KB |
testcase_05 | AC | 39 ms
52,608 KB |
testcase_06 | AC | 37 ms
52,608 KB |
testcase_07 | AC | 37 ms
52,608 KB |
testcase_08 | AC | 38 ms
52,608 KB |
testcase_09 | AC | 40 ms
52,608 KB |
testcase_10 | AC | 38 ms
52,480 KB |
testcase_11 | AC | 37 ms
52,608 KB |
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 | AC | 140 ms
76,000 KB |
testcase_23 | AC | 106 ms
76,340 KB |
testcase_24 | AC | 143 ms
76,020 KB |
testcase_25 | AC | 138 ms
76,124 KB |
testcase_26 | AC | 127 ms
76,156 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
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(s2,t): 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)