結果
問題 | No.247 線形計画問題もどき |
ユーザー | fine |
提出日時 | 2016-04-04 23:20:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 671 bytes |
コンパイル時間 | 2,911 ms |
コンパイル使用メモリ | 162,828 KB |
実行使用メモリ | 43,136 KB |
最終ジャッジ日時 | 2024-10-04 01:08:50 |
合計ジャッジ時間 | 4,125 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 58 ms
43,136 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 4 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 12 ms
12,416 KB |
testcase_18 | WA | - |
testcase_19 | RE | - |
testcase_20 | AC | 37 ms
35,584 KB |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | AC | 38 ms
36,480 KB |
testcase_25 | AC | 28 ms
27,136 KB |
testcase_26 | RE | - |
testcase_27 | AC | 11 ms
11,008 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); const int INF = 1000000; int c, n, a[100]; cin >> c >> n; vector< vector<int> > dp(n + 1, vector<int>(c + 1, INF)); for(int i = 0; i < n; i++){ cin >> a[i]; dp[i][0] = 0; } for(int i = 1; i <= n; i++) { for(int j = 1; j < a[i - 1]; j++) { dp[i][j] = dp[i - 1][j]; } for(int j = a[i - 1]; j <= c; j++) { dp[i][j] = min(dp[i - 1][j], dp[i][j - a[i - 1]] + 1); } } if (dp[n][c] == INF) cout << -1 << "\n"; else cout << dp[n][c] << "\n"; return 0; }