結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 350 ms
25,124 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 572 ms
25,508 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 229 ms
19,572 KB
testcase_16 AC 304 ms
22,592 KB
testcase_17 AC 180 ms
17,492 KB
testcase_18 AC 233 ms
19,548 KB
testcase_19 AC 280 ms
22,372 KB
testcase_20 AC 294 ms
23,084 KB
testcase_21 AC 307 ms
23,400 KB
testcase_22 AC 252 ms
21,000 KB
testcase_23 AC 203 ms
18,716 KB
testcase_24 AC 105 ms
14,080 KB
testcase_25 AC 32 ms
11,008 KB
testcase_26 AC 31 ms
10,752 KB
testcase_27 AC 31 ms
11,008 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 = [(A[1] + B[2], 2)]
done = [0] * (N + 1)
done[1] = 1
ans = 0
while q:
    t, j = heappop(q)
    if done[j]:
        continue
    if j in (N - 1, N):
        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