結果

問題 No.2852 Yakitori Optimization Problem
ユーザー Yuyo1984Yuyo1984
提出日時 2024-08-25 14:08:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 548 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 171,644 KB
最終ジャッジ日時 2024-08-25 14:09:09
合計ジャッジ時間 11,104 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 RE -
testcase_06 WA -
testcase_07 WA -
testcase_08 RE -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 AC 700 ms
167,232 KB
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = [*map(int, input().split())]
B = [*map(int, input().split())]
C = [*map(int, input().split())]

D = list()
for a, b in zip(A, B):
    D.append(a + b)
E = list()
for a, c in zip(A, C):
    E.append(a + c)

F = list()
for i in range(n):
    F.append((D[i], E[i]))

ans = 0
F.sort(reverse=True)
cnt = 0
idx = 0
s = set()
while cnt < k:
    if F[idx][0] > F[idx][1]:
        ans += F[idx][0]
        cnt += 1
        s.add(idx)
    idx += 1

for i in range(n):
    if i not in s:
        ans += F[i][1]

print(ans)
0