結果

問題 No.247 線形計画問題もどき
ユーザー 158b158b
提出日時 2015-07-17 23:16:45
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,009 bytes
コンパイル時間 551 ms
コンパイル使用メモリ 77,508 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-22 18:11:44
合計ジャッジ時間 1,590 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 1 ms
4,376 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,380 KB
testcase_15 AC 2 ms
4,380 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 WA -
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 WA -
testcase_21 AC 1 ms
4,380 KB
testcase_22 WA -
testcase_23 AC 2 ms
4,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 1 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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[100000] = {0};
int total,n;
int a[100000] = {0};

bool func(int op, int left, int &ans){
	if(left == 0){
		ans = accumulate(x, x+n, 0);
		return true;
	}
	if(op >= n){
		return false;
	}
	
	x[op] = left / a[op];
	
	while(x[op] >= 0){
		if(func(op+1, left - a[op] * x[op], ans)){
			return true;
		}
		
		if(x[op] == 0){
			return false;
		}
		x[op] --;
	}
	x[op] = 0;
	return false;
}

int main(){
	int ans = 0;
	
	cin >> total >> n;
	rep(i,n){
		cin >> a[i];
	}
	
	sort(a, a + n, greater<int>());  	//降順
	
	if(func(0, total, ans)){
		cout << ans << endl;
	}else{
		cout << -1 << endl;
	}
	
    return 0;
}
0