結果
問題 | No.247 線形計画問題もどき |
ユーザー | 158b |
提出日時 | 2015-07-17 23:36:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,084 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 78,284 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-07-08 09:37:59 |
合計ジャッジ時間 | 7,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <functional> #include <string> #include <climits> #include <vector> #include <numeric> #include <complex> #include <map> #include <bitset> using namespace std; //#define __int64 long long #define long __int64 #define REP(i,a,b) for(int i=a;i<b;i++) #define rep(i,n) REP(i,0,n) const int Vecy[4] = {0,-1,0,1}; const int Vecx[4] = {1,0,-1,0}; int x[100] = {0}; int total,n; int a[100] = {0}; bool func(int op, int left, int &ans){ if(left == 0){ ans = min(ans, accumulate(x, x+n, 0)); return true; } if(op >= n){ return false; } x[op] = left / a[op]; if(ans == INT_MAX){ while(x[op] >= 0){ func(op+1, left - a[op] * x[op], ans); x[op] --; } x[op] = 0; return false; }else{ for(int i=0; i<5; i++){ func(op+1, left - a[op] * x[op], ans); x[op] --; } return false; } } int main(){ int ans = INT_MAX; cin >> total >> n; rep(i,n){ cin >> a[i]; } sort(a, a + n, greater<int>()); //降順 func(0, total, ans); cout << (ans == INT_MAX ? -1 : ans) << endl; return 0; }