結果
問題 | No.871 かえるのうた |
ユーザー | 双六 |
提出日時 | 2020-08-27 18:23:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 255 ms / 2,000 ms |
コード長 | 1,216 bytes |
コンパイル時間 | 613 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 118,664 KB |
最終ジャッジ日時 | 2024-05-07 16:41:12 |
合計ジャッジ時間 | 6,874 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
54,144 KB |
testcase_01 | AC | 41 ms
54,144 KB |
testcase_02 | AC | 42 ms
53,888 KB |
testcase_03 | AC | 43 ms
53,888 KB |
testcase_04 | AC | 43 ms
54,272 KB |
testcase_05 | AC | 42 ms
54,016 KB |
testcase_06 | AC | 41 ms
53,632 KB |
testcase_07 | AC | 43 ms
54,016 KB |
testcase_08 | AC | 86 ms
77,184 KB |
testcase_09 | AC | 84 ms
77,312 KB |
testcase_10 | AC | 62 ms
67,072 KB |
testcase_11 | AC | 73 ms
72,064 KB |
testcase_12 | AC | 110 ms
83,200 KB |
testcase_13 | AC | 93 ms
77,568 KB |
testcase_14 | AC | 196 ms
115,760 KB |
testcase_15 | AC | 195 ms
115,912 KB |
testcase_16 | AC | 255 ms
118,664 KB |
testcase_17 | AC | 190 ms
113,572 KB |
testcase_18 | AC | 107 ms
83,200 KB |
testcase_19 | AC | 208 ms
116,924 KB |
testcase_20 | AC | 84 ms
78,336 KB |
testcase_21 | AC | 135 ms
91,392 KB |
testcase_22 | AC | 43 ms
54,016 KB |
testcase_23 | AC | 43 ms
54,400 KB |
testcase_24 | AC | 43 ms
53,888 KB |
testcase_25 | AC | 92 ms
77,056 KB |
testcase_26 | AC | 103 ms
78,976 KB |
testcase_27 | AC | 97 ms
80,768 KB |
testcase_28 | AC | 43 ms
53,888 KB |
testcase_29 | AC | 145 ms
97,664 KB |
testcase_30 | AC | 177 ms
97,408 KB |
testcase_31 | AC | 86 ms
77,184 KB |
testcase_32 | AC | 162 ms
96,896 KB |
testcase_33 | AC | 195 ms
112,944 KB |
testcase_34 | AC | 109 ms
86,528 KB |
testcase_35 | AC | 154 ms
96,000 KB |
testcase_36 | AC | 164 ms
99,952 KB |
testcase_37 | AC | 141 ms
92,672 KB |
testcase_38 | AC | 223 ms
112,536 KB |
testcase_39 | AC | 205 ms
109,436 KB |
testcase_40 | AC | 159 ms
99,712 KB |
testcase_41 | AC | 41 ms
54,016 KB |
testcase_42 | AC | 153 ms
99,968 KB |
testcase_43 | AC | 40 ms
54,272 KB |
testcase_44 | AC | 42 ms
54,016 KB |
testcase_45 | AC | 84 ms
77,440 KB |
testcase_46 | AC | 42 ms
54,016 KB |
testcase_47 | AC | 43 ms
54,144 KB |
testcase_48 | AC | 41 ms
53,888 KB |
ソースコード
import sys; input = sys.stdin.buffer.readline sys.setrecursionlimit(10**7) from collections import defaultdict con = 10 ** 9 + 7; INF = float("inf") from collections import deque import bisect def getlist(): return list(map(int, input().split())) class Graph(object): def __init__(self): self.graph = defaultdict(list) def __len__(self): return len(self.graph) def add_edge(self, a, b): self.graph[a].append(b) class BFS(object): def __init__(self, graph, s, N): self.g = graph.graph self.Q = deque(); self.Q.append(s) self.dist = [INF] * N; self.dist[s] = 0 while self.Q: v = self.Q.popleft() for i in self.g[v]: if self.dist[i] == INF: self.dist[i] = self.dist[v] + 1 self.Q.append(i) #処理内容 def main(): N, K = getlist() X = getlist() A = getlist() G = Graph() for i in range(K - 1): G.add_edge(i, i + 1) for i in range(K - 1, N): G.add_edge(i + 1, i) for i in range(N): left = bisect.bisect_left(X, X[i] - A[i]) right = bisect.bisect_right(X, X[i] + A[i]) - 1 G.add_edge(i, left) G.add_edge(i, right) BF = BFS(G, K - 1, N) ans = 0 for i in range(N): if BF.dist[i] != INF: ans += 1 print(ans) if __name__ == '__main__': main()