結果

問題 No.2566 美しい整数列
ユーザー loop0919loop0919
提出日時 2023-09-21 01:10:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 835 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 167,456 KB
最終ジャッジ日時 2024-07-06 19:54:13
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 45 ms
54,144 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 44 ms
54,144 KB
testcase_04 AC 253 ms
162,428 KB
testcase_05 AC 267 ms
167,456 KB
testcase_06 AC 201 ms
141,352 KB
testcase_07 AC 202 ms
137,700 KB
testcase_08 AC 201 ms
139,544 KB
testcase_09 AC 200 ms
138,476 KB
testcase_10 AC 201 ms
138,556 KB
testcase_11 AC 223 ms
137,764 KB
testcase_12 AC 219 ms
138,380 KB
testcase_13 AC 212 ms
137,896 KB
testcase_14 AC 214 ms
137,804 KB
testcase_15 AC 216 ms
137,916 KB
testcase_16 AC 234 ms
151,104 KB
testcase_17 AC 243 ms
153,396 KB
testcase_18 AC 240 ms
154,480 KB
testcase_19 AC 175 ms
124,696 KB
testcase_20 AC 226 ms
151,992 KB
testcase_21 AC 223 ms
151,940 KB
testcase_22 AC 166 ms
126,584 KB
testcase_23 AC 205 ms
139,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

# 入力
N, M = map(int, input().split())
A_list = list(map(int, input().split()))
B_list = list(map(int, input().split()))
C_list = list(map(int, input().split()))

# 入力値チェック
assert 1 <= M <= N <= 2 * 10**5
assert all([-10**9 <= a <= 10**9 for a in A_list])
assert all([-10**9 <= b <= 10**9 for b in B_list])
assert all([1 <= c <= 10**9 for c in C_list])

# 解く
sum_cost = sum(C_list)

cnt = 0
exempted_costs = defaultdict(int)

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

# 徴収が免除される最大のコスト
max_exempted_cost = 0

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

# 総コスト - 免除コスト
print(sum_cost - max_exempted_cost)

0