結果
問題 | No.626 Randomized 01 Knapsack |
ユーザー | e869120 |
提出日時 | 2018-06-09 17:57:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 819 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 78,580 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-06-30 12:38:38 |
合計ジャッジ時間 | 5,365 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 17 ms
5,376 KB |
testcase_04 | AC | 10 ms
5,376 KB |
testcase_05 | AC | 73 ms
5,376 KB |
testcase_06 | AC | 517 ms
6,076 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; long long N, W, v[5009], w[5009]; vector<pair<long long, long long>>vec, vec2; int main() { cin >> N >> W; for (int i = 1; i <= N; i++) { cin >> v[i] >> w[i]; } vec.push_back(make_pair(0, 0)); for (int i = 1; i <= N; i++) { for (int j = 0; j < vec.size(); j++) { vec2.push_back(vec[j]); vec2.push_back(make_pair(vec[j].first + w[i], vec[j].second + v[i])); } sort(vec2.begin(), vec2.end()); vec.clear(); long long maxn = -1; for (int j = 0; j < vec2.size(); j++) { if (maxn < vec2[j].second) { maxn = vec2[j].second; vec.push_back(vec2[j]); } } vec2.clear(); } long long T = 0; for (int i = 0; i < vec.size(); i++) { if (vec[i].first <= W) T = vec[i].second; } cout << T << endl; return 0; }