結果

問題 No.2566 美しい整数列
ユーザー loop0919loop0919
提出日時 2023-09-21 01:01:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 761 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 160,404 KB
最終ジャッジ日時 2024-07-06 19:45:54
合計ジャッジ時間 5,667 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

# import系 ---
from collections import defaultdict

# 入力用 ---
INT = lambda: int(input())
MI = lambda: map(int, input().split())
MI_DEC = lambda: map(lambda x: int(x) - 1, input().split())
LI = lambda: list(map(int, input().split()))
LI_DEC = lambda: list(map(lambda x: int(x) - 1, input().split()))
LS = lambda: list(input())
LSS = lambda: input().split()


# コード ---
N, M = MI()
A_list = LI()
B_list = LI()
C_list = LI()

sum_cost = sum(C_list)

cnt = 0
diff_dict = defaultdict(int)

for i, (a, c) in enumerate(zip(A_list, C_list)):
    cnt += B_list[(i - 1) % M]
    diff_dict[cnt - a] += c

max_exempted_cost = 0

for exempted in diff_dict.values():
    max_exempted_cost = max(exempted, max_exempted_cost)

print(sum_cost - max_exempted_cost)

0