結果

問題 No.871 かえるのうた
ユーザー kept1994kept1994
提出日時 2021-08-31 18:51:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,009 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 850,712 KB
最終ジャッジ日時 2024-11-26 02:33:15
合計ジャッジ時間 15,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,416 KB
testcase_01 AC 37 ms
54,600 KB
testcase_02 AC 38 ms
55,072 KB
testcase_03 AC 39 ms
54,368 KB
testcase_04 AC 39 ms
54,992 KB
testcase_05 AC 40 ms
54,552 KB
testcase_06 AC 40 ms
54,668 KB
testcase_07 AC 38 ms
54,060 KB
testcase_08 AC 70 ms
77,128 KB
testcase_09 AC 83 ms
76,928 KB
testcase_10 AC 74 ms
72,652 KB
testcase_11 AC 66 ms
72,032 KB
testcase_12 AC 106 ms
80,452 KB
testcase_13 AC 84 ms
77,040 KB
testcase_14 AC 183 ms
97,540 KB
testcase_15 AC 180 ms
98,360 KB
testcase_16 TLE -
testcase_17 AC 212 ms
96,960 KB
testcase_18 AC 86 ms
79,792 KB
testcase_19 AC 213 ms
102,560 KB
testcase_20 TLE -
testcase_21 AC 126 ms
86,876 KB
testcase_22 AC 42 ms
60,068 KB
testcase_23 AC 41 ms
59,864 KB
testcase_24 AC 36 ms
53,764 KB
testcase_25 AC 79 ms
77,752 KB
testcase_26 AC 120 ms
96,392 KB
testcase_27 AC 106 ms
82,964 KB
testcase_28 AC 44 ms
54,152 KB
testcase_29 AC 130 ms
95,392 KB
testcase_30 AC 375 ms
194,172 KB
testcase_31 AC 87 ms
76,708 KB
testcase_32 AC 192 ms
100,940 KB
testcase_33 AC 259 ms
119,116 KB
testcase_34 AC 100 ms
82,520 KB
testcase_35 AC 147 ms
93,912 KB
testcase_36 AC 142 ms
93,228 KB
testcase_37 AC 256 ms
143,316 KB
testcase_38 AC 1,753 ms
410,392 KB
testcase_39 AC 274 ms
121,080 KB
testcase_40 AC 153 ms
95,216 KB
testcase_41 AC 42 ms
54,256 KB
testcase_42 AC 164 ms
99,584 KB
testcase_43 AC 42 ms
54,252 KB
testcase_44 AC 46 ms
60,592 KB
testcase_45 AC 82 ms
77,020 KB
testcase_46 AC 40 ms
54,432 KB
testcase_47 AC 37 ms
54,184 KB
testcase_48 AC 37 ms
55,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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()
0