結果
問題 | No.527 ナップサック容量問題 |
ユーザー | かに |
提出日時 | 2017-07-11 20:58:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,088 bytes |
コンパイル時間 | 2,271 ms |
コンパイル使用メモリ | 204,068 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 15:07:52 |
合計ジャッジ時間 | 3,210 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 3 ms
6,816 KB |
testcase_06 | AC | 8 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | WA | - |
testcase_11 | AC | 5 ms
6,820 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 9 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 5 ms
6,820 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 5 ms
6,820 KB |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,820 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | WA | - |
testcase_36 | AC | 2 ms
6,820 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:43:31: warning: 'buf' may be used uninitialized [-Wmaybe-uninitialized] 43 | dp[i] = buf; main.cpp:37:13: note: 'buf' was declared here 37 | int buf; | ^~~
ソースコード
#include "bits/stdc++.h" #define rep(a,b) for(int a = 0;a < b;a++) #define REP(i, x, n) for(int i = x; i < n; i++) #define P(a) cout << a << endl using namespace std; typedef long long ll; typedef unsigned long long ull; int dx[] = { 1, -1 , 0 , 0 }; int dy[] = { 0, 0, 1, -1 }; ll MOD = 1000000007; unsigned long long str_to_int(std::string str) { unsigned long long ret; std::stringstream ss; ss << str; ss >> ret; return ret; } int main() { int n,V,sum = 0; cin >> n; vector<int> v(n), w(n); rep(i, n) { cin >> v[i] >> w[i]; sum += w[i]; } cin >> V; vector<int> dp(sum+1, -1); dp[0] = 0; for (int i = 0; i < n; i++) { for (int j = sum; j >= 0; j--) { if (dp[j] != -1) { dp[j + w[i]] = max(dp[j + w[i]], dp[j] + v[i]); } } } int buf; rep(i, sum + 1) { if (dp[i] != -1) { buf = dp[i]; } else { dp[i] = buf; } } int minans = 1e9, maxans = -1; for (int i = 1; i <= sum; i++) { if (dp[i] == V) { maxans = max(maxans, i); minans = min(minans, i); } } P(minans); if (dp[sum] == V) { P("inf"); } else { P(maxans); } }