結果
問題 | No.2730 Two Types Luggage |
ユーザー | june19312 |
提出日時 | 2024-04-19 23:54:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,352 bytes |
コンパイル時間 | 1,019 ms |
コンパイル使用メモリ | 84,028 KB |
実行使用メモリ | 23,828 KB |
最終ジャッジ日時 | 2024-10-11 18:46:12 |
合計ジャッジ時間 | 11,371 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int N, M, W; cin >> N >> M >> W; vector<int> A(N), B(M), C(M); for (int i = 0; i < N; ++i) { cin >> A[i]; } for (int i = 0; i < M; ++i) { cin >> B[i]; } for (int i = 0; i < M; ++i) { cin >> C[i]; } vector<pair<long long, int>> t; for (int i = 0; i < N; ++i) { t.push_back({static_cast<long long>(A[i]) * 1000000000000000000LL, i}); } for (int i = 0; i < M; ++i) { t.push_back({static_cast<long long>(C[i]) * 1000000000000000000LL / B[i], 10000000 + i}); } sort(t.begin(), t.end()); long long ans = 0; int weight = 0; for (int i = t.size() - 1; i >= 0; --i) { long long tanka = t[i].first; int ind = t[i].second; int omosa; int value; if (ind >= 10000000) { ind -= 10000000; omosa = B[ind]; value = C[ind]; } else { omosa = 1; value = A[ind]; } if (weight + omosa <= W) { weight += omosa; ans += value; } else { if (omosa == 1) { cout << ans << endl; return 0; } } } cout << ans << endl; return 0; }