結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | Yuyo1984 |
提出日時 | 2024-08-25 15:09:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 742 bytes |
コンパイル時間 | 389 ms |
コンパイル使用メモリ | 82,444 KB |
実行使用メモリ | 181,980 KB |
最終ジャッジ日時 | 2024-08-25 15:09:26 |
合計ジャッジ時間 | 19,952 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 1,438 ms
176,516 KB |
testcase_16 | WA | - |
ソースコード
n, k = map(int, input().split()) A = [*map(int, input().split())] B = [*map(int, input().split())] C = [*map(int, input().split())] D = list() idx_d = 0 for a, b in zip(A, B): D.append((a + b, 0, idx_d)) idx_d += 1 idx_e = 0 E = list() for a, c in zip(A, C): E.append((a + c, 1, idx_e)) idx_e += 1 F = D + E used = set() ans = 0 F.sort(reverse=True) cnt = 0 made = 0 for i in range(len(F)): if F[i][2] not in used: if F[i][1] == 0: if cnt < k: ans += F[i][0] cnt += 1 made += 1 used.add(F[i][2]) else: ans += F[i][0] used.add(F[i][2]) made += 1 if made == n: break print(ans)