結果
問題 | No.247 線形計画問題もどき |
ユーザー | syoken_desuka |
提出日時 | 2015-07-18 01:11:54 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,451 bytes |
コンパイル時間 | 787 ms |
コンパイル使用メモリ | 92,404 KB |
実行使用メモリ | 42,880 KB |
最終ジャッジ日時 | 2024-07-08 10:01:18 |
合計ジャッジ時間 | 2,410 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 33 ms
42,880 KB |
testcase_10 | WA | - |
testcase_11 | AC | 34 ms
42,624 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 33 ms
42,624 KB |
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 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <algorithm> #include <array> #include <sstream> #include <cstdio> #include <functional> #include <cstdlib> #include <cctype> #include <ostream> #include<complex> #include <cmath> #include <iostream> #include <stack> #include <fstream> #include <queue> #include <list> #include <map> #include <numeric> #include <set> #include <sstream> #include <bitset> #include <iomanip> #include <string> #include <vector> #include <string> using namespace std; #define OB (bitset<32>) #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define ALLOF(c) begin(), (c),end() typedef long long ll; #define PI acos(-1) #define EPS 0.000000001 #define MOD 1000000007 int main() { int c,n; int a[100]; int dp[101][100001]; cin >> c >> n; fill(a,a+100,-1);//invalid error on sort rep(i,100) { rep(j,100000) { dp[i][j] = 1000000; } } rep(i,n) { cin >> a[i]; } sort(a,a+100,greater<int>()); dp[0][0] = 0; for (int i = 0; i < n; i++) { for (int j = 0; j < c+1; j++) { if (j < a[i]) { dp[i+1][j]= dp[i][j]; } else { dp[i+1][j] = min(dp[i][j], dp[i+1][0] + 1 ); } } } if (dp[n][c] != MOD) { cout << dp[n][c] << endl; return 0; } cout << "-1" << endl; return 0; }