結果
問題 | No.527 ナップサック容量問題 |
ユーザー | le_panda_noir |
提出日時 | 2020-06-14 14:05:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 828 bytes |
コンパイル時間 | 637 ms |
コンパイル使用メモリ | 74,112 KB |
実行使用メモリ | 42,880 KB |
最終ジャッジ日時 | 2024-06-27 07:25:12 |
合計ジャッジ時間 | 2,564 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,504 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 13 ms
19,584 KB |
testcase_06 | AC | 21 ms
37,128 KB |
testcase_07 | WA | - |
testcase_08 | AC | 9 ms
17,152 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 39 ms
37,504 KB |
testcase_11 | AC | 16 ms
27,264 KB |
testcase_12 | AC | 12 ms
20,608 KB |
testcase_13 | AC | 21 ms
38,400 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 4 ms
5,376 KB |
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 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 5 ms
7,552 KB |
testcase_31 | AC | 20 ms
20,224 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 13 ms
24,960 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 12 ms
23,808 KB |
testcase_39 | WA | - |
ソースコード
#include <iostream> #include <vector> using namespace std; using vi = vector<int>; #define rep(i,n) for(int i=0,_i=(n);i<_i;++i) constexpr int MAX_V = 1e5+2; int dp[101][MAX_V]; int main() { int N; cin >> N; vi v(N), w(N); rep(i, N) cin >> v[i] >> w[i]; int V; cin >> V; // dp[i][v] = i番目までで価値の総和がちょうどvのときの容量の最小値 rep(i, N+1) rep(j, MAX_V) { dp[i][j] = -1; } dp[0][0] = 0; rep(i, N) rep(j, MAX_V) { dp[i+1][j] = dp[i][j]; if (dp[i][j-v[i]] == -1) continue; if (dp[i+1][j] == -1) dp[i+1][j] = dp[i][j-v[i]] + w[i]; else dp[i+1][j] = min(dp[i+1][j], dp[i][j-v[i]] + w[i]); } cout << max(1, dp[N][V]) << endl; if (dp[N][V+1] == -1) cout << "inf\n"; else cout << dp[N][V+1]-1 << endl; return 0; }