結果
問題 | No.871 かえるのうた |
ユーザー | kept1994 |
提出日時 | 2021-08-31 18:51:36 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,009 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 82,592 KB |
実行使用メモリ | 848,688 KB |
最終ジャッジ日時 | 2024-05-04 14:30:05 |
合計ジャッジ時間 | 7,117 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
54,612 KB |
testcase_01 | AC | 49 ms
53,888 KB |
testcase_02 | AC | 42 ms
54,144 KB |
testcase_03 | AC | 44 ms
54,400 KB |
testcase_04 | AC | 43 ms
54,144 KB |
testcase_05 | AC | 42 ms
53,888 KB |
testcase_06 | AC | 42 ms
54,016 KB |
testcase_07 | AC | 44 ms
54,272 KB |
testcase_08 | AC | 78 ms
76,800 KB |
testcase_09 | AC | 77 ms
77,184 KB |
testcase_10 | AC | 70 ms
72,064 KB |
testcase_11 | AC | 68 ms
71,808 KB |
testcase_12 | AC | 101 ms
80,528 KB |
testcase_13 | AC | 95 ms
77,184 KB |
testcase_14 | AC | 195 ms
97,668 KB |
testcase_15 | AC | 202 ms
98,000 KB |
testcase_16 | MLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
ソースコード
#!/usr/bin/env python3 import sys def main(): from collections import deque INF = 10 ** 16 def bfs(edges: "List[to]", start_node: int) -> list: q = deque() dist = [INF] * len(edges) q.append(start_node) dist[start_node] = 0 while q: now = q.popleft() for next in edges[now]: if dist[next] != INF: continue q.append(next) dist[next] = dist[now] + 1 return dist import bisect N, K = map(int, input().split()) X = list(map(int, input().split())) A = list(map(int, input().split())) G = [[] for _ in range(N)] for i in range(N): l = bisect.bisect_left(X, X[i] - A[i]) r = bisect.bisect_right(X, X[i] + A[i]) for j in range(l, r): if i == j: continue G[i].append(j) d = bfs(G, K - 1) print(N - d.count(INF)) return if __name__ == '__main__': main()