結果
問題 | No.871 かえるのうた |
ユーザー | 双六 |
提出日時 | 2020-08-27 18:23:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 249 ms / 2,000 ms |
コード長 | 1,216 bytes |
コンパイル時間 | 428 ms |
コンパイル使用メモリ | 82,188 KB |
実行使用メモリ | 118,880 KB |
最終ジャッジ日時 | 2024-11-30 11:03:50 |
合計ジャッジ時間 | 7,091 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,144 KB |
testcase_01 | AC | 41 ms
54,400 KB |
testcase_02 | AC | 40 ms
54,016 KB |
testcase_03 | AC | 42 ms
54,016 KB |
testcase_04 | AC | 40 ms
54,016 KB |
testcase_05 | AC | 41 ms
54,400 KB |
testcase_06 | AC | 40 ms
53,888 KB |
testcase_07 | AC | 41 ms
54,400 KB |
testcase_08 | AC | 78 ms
77,272 KB |
testcase_09 | AC | 79 ms
77,696 KB |
testcase_10 | AC | 58 ms
67,200 KB |
testcase_11 | AC | 63 ms
72,192 KB |
testcase_12 | AC | 98 ms
83,328 KB |
testcase_13 | AC | 84 ms
77,952 KB |
testcase_14 | AC | 192 ms
116,128 KB |
testcase_15 | AC | 186 ms
115,916 KB |
testcase_16 | AC | 249 ms
118,880 KB |
testcase_17 | AC | 180 ms
112,932 KB |
testcase_18 | AC | 101 ms
83,620 KB |
testcase_19 | AC | 199 ms
116,528 KB |
testcase_20 | AC | 76 ms
78,080 KB |
testcase_21 | AC | 129 ms
91,520 KB |
testcase_22 | AC | 40 ms
54,440 KB |
testcase_23 | AC | 39 ms
54,656 KB |
testcase_24 | AC | 40 ms
54,400 KB |
testcase_25 | AC | 86 ms
77,116 KB |
testcase_26 | AC | 99 ms
78,976 KB |
testcase_27 | AC | 91 ms
80,512 KB |
testcase_28 | AC | 43 ms
53,888 KB |
testcase_29 | AC | 142 ms
97,536 KB |
testcase_30 | AC | 173 ms
97,280 KB |
testcase_31 | AC | 80 ms
77,056 KB |
testcase_32 | AC | 158 ms
96,720 KB |
testcase_33 | AC | 189 ms
112,896 KB |
testcase_34 | AC | 102 ms
86,528 KB |
testcase_35 | AC | 144 ms
95,864 KB |
testcase_36 | AC | 164 ms
99,788 KB |
testcase_37 | AC | 139 ms
92,672 KB |
testcase_38 | AC | 220 ms
112,248 KB |
testcase_39 | AC | 207 ms
109,396 KB |
testcase_40 | AC | 153 ms
99,456 KB |
testcase_41 | AC | 40 ms
54,016 KB |
testcase_42 | AC | 152 ms
99,968 KB |
testcase_43 | AC | 43 ms
54,016 KB |
testcase_44 | AC | 41 ms
54,656 KB |
testcase_45 | AC | 75 ms
77,628 KB |
testcase_46 | AC | 42 ms
54,016 KB |
testcase_47 | AC | 42 ms
54,016 KB |
testcase_48 | AC | 41 ms
54,272 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()