結果

問題 No.1104 オンライン点呼
ユーザー maspymaspy
提出日時 2020-07-03 23:11:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 714 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 25,540 KB
最終ジャッジ日時 2024-09-17 04:51:21
合計ジャッジ時間 5,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 315 ms
25,124 KB
testcase_02 AC 319 ms
25,000 KB
testcase_03 AC 290 ms
20,912 KB
testcase_04 AC 28 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 189 ms
16,016 KB
testcase_08 AC 94 ms
13,016 KB
testcase_09 AC 536 ms
25,540 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 141 ms
16,308 KB
testcase_12 AC 193 ms
18,656 KB
testcase_13 AC 127 ms
15,792 KB
testcase_14 AC 33 ms
11,264 KB
testcase_15 AC 209 ms
19,812 KB
testcase_16 WA -
testcase_17 AC 166 ms
17,484 KB
testcase_18 AC 225 ms
19,540 KB
testcase_19 AC 254 ms
22,244 KB
testcase_20 AC 276 ms
23,396 KB
testcase_21 AC 290 ms
23,384 KB
testcase_22 AC 242 ms
21,244 KB
testcase_23 AC 190 ms
18,820 KB
testcase_24 AC 97 ms
14,060 KB
testcase_25 AC 26 ms
10,496 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 26 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappush, heappop

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, K = map(int, readline().split())
A = [0] + list(map(int, readline().split()))
B = [0] + list(map(int, readline().split()))

if N == 1:
    print(0)
    exit()

q = [(0, 1)]
done = [0] * (N + 1)
done[1] = 0
ans = 0
while q:
    t, j = heappop(q)
    if done[j]:
        continue
    ans = max(ans, t)
    done[j] = 1
    # j+1 への伝搬
    if j < N:
        t1, j1 = t + A[j] + B[j + 1], j + 1
        heappush(q, (t1, j1))
    # j+2 への伝搬
    if j < N - 1:
        t1, j1 = t + A[j] + B[j + 2] + K, j + 2
        heappush(q, (t1, j1))

print(ans)
0