結果

問題 No.871 かえるのうた
ユーザー kept1994kept1994
提出日時 2021-08-31 18:52:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,009 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 818,000 KB
最終ジャッジ日時 2024-11-26 02:33:40
合計ジャッジ時間 19,088 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,624 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 32 ms
10,624 KB
testcase_08 AC 39 ms
12,160 KB
testcase_09 AC 43 ms
12,672 KB
testcase_10 AC 34 ms
11,392 KB
testcase_11 AC 34 ms
10,880 KB
testcase_12 AC 91 ms
22,228 KB
testcase_13 AC 46 ms
13,440 KB
testcase_14 AC 261 ms
35,656 KB
testcase_15 AC 295 ms
49,380 KB
testcase_16 TLE -
testcase_17 AC 295 ms
26,296 KB
testcase_18 AC 76 ms
13,516 KB
testcase_19 AC 426 ms
84,648 KB
testcase_20 TLE -
testcase_21 AC 218 ms
43,956 KB
testcase_22 AC 34 ms
10,880 KB
testcase_23 AC 32 ms
10,880 KB
testcase_24 AC 31 ms
10,624 KB
testcase_25 AC 72 ms
20,480 KB
testcase_26 AC 379 ms
103,424 KB
testcase_27 AC 127 ms
36,224 KB
testcase_28 AC 32 ms
10,624 KB
testcase_29 AC 143 ms
18,804 KB
testcase_30 TLE -
testcase_31 AC 38 ms
11,392 KB
testcase_32 AC 476 ms
101,732 KB
testcase_33 AC 603 ms
149,464 KB
testcase_34 AC 80 ms
16,300 KB
testcase_35 AC 249 ms
54,716 KB
testcase_36 AC 188 ms
24,196 KB
testcase_37 AC 1,213 ms
319,416 KB
testcase_38 TLE -
testcase_39 AC 790 ms
170,036 KB
testcase_40 AC 183 ms
28,340 KB
testcase_41 AC 32 ms
10,752 KB
testcase_42 AC 185 ms
28,872 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
11,008 KB
testcase_45 AC 34 ms
11,136 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 31 ms
10,624 KB
testcase_48 AC 30 ms
10,624 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