結果
問題 | No.247 線形計画問題もどき |
ユーザー | machy |
提出日時 | 2015-07-17 23:13:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 899 bytes |
コンパイル時間 | 610 ms |
コンパイル使用メモリ | 65,848 KB |
実行使用メモリ | 36,608 KB |
最終ジャッジ日時 | 2024-07-08 09:28:21 |
合計ジャッジ時間 | 1,358 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 21 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
6,784 KB |
testcase_22 | WA | - |
testcase_23 | AC | 4 ms
7,296 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 7 ms
11,008 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ int C, N; cin >> C >> N; vector<int> a(N); for(int i = 0; i < N; i++){ cin >> a[i]; } for(int i = 1; i < a.size(); i++){ if(a[i] == a[i-1]){ a.erase(a.begin()+i); i--; } } N = a.size(); vector<vector<int> > dp(N+1, vector<int>(C+1, 1000*1000*1000)); dp[0][0] = 0; for(int i = 0; i < N; i++){ for(int j = 0; j < C && j < 1000; j++){ if(dp[i][j] == 1000*1000*1000) continue; int cost = 0; for(int k = j; k <= C; k += a[i]){ dp[i+1][k] = min(dp[i+1][k], dp[i][j] + cost); cost++; } } } if(dp[N][C] == 1000*1000*1000){ cout << -1 << endl; }else{ cout << dp[N][C] << endl; } return 0; }