結果

問題 No.733 分身並列コーディング
ユーザー polylogKpolylogK
提出日時 2018-09-07 23:17:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 753 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 172,460 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-29 20:30:19
合計ジャッジ時間 17,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
10,912 KB
testcase_02 AC 1 ms
13,636 KB
testcase_03 AC 16 ms
11,008 KB
testcase_04 AC 17 ms
13,632 KB
testcase_05 AC 10 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 24 ms
6,820 KB
testcase_10 AC 5 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 10 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 1 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 10 ms
6,820 KB
testcase_19 AC 27 ms
6,816 KB
testcase_20 AC 65 ms
6,816 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 82 ms
6,820 KB
testcase_23 AC 19 ms
6,816 KB
testcase_24 AC 51 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 TLE -
testcase_29 AC 326 ms
6,816 KB
testcase_30 AC 329 ms
6,816 KB
testcase_31 AC 299 ms
6,820 KB
testcase_32 AC 23 ms
6,816 KB
testcase_33 AC 26 ms
6,820 KB
testcase_34 AC 22 ms
6,820 KB
testcase_35 AC 24 ms
6,820 KB
testcase_36 AC 24 ms
6,820 KB
testcase_37 AC 22 ms
6,820 KB
testcase_38 AC 738 ms
6,816 KB
testcase_39 AC 778 ms
6,816 KB
testcase_40 AC 969 ms
6,816 KB
testcase_41 AC 24 ms
6,816 KB
testcase_42 AC 26 ms
6,816 KB
testcase_43 AC 23 ms
6,816 KB
testcase_44 AC 674 ms
6,820 KB
testcase_45 AC 736 ms
6,820 KB
testcase_46 AC 708 ms
6,816 KB
testcase_47 AC 655 ms
6,816 KB
testcase_48 AC 738 ms
10,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long i64;
using std::cout;
using std::endl;
using std::cin;

int main(){
	int T, n; cin >> T >> n; std::vector<int> t(n);
	for(int i = 0; i < n; i++) cin >> t[i];
	
	std::vector<int> vec;
	std::vector<bool> li(1 << n, false);
	for(int i = 1; i < (1 << n); i++) {
		int tmp = 0;
		for(int j = 0; j < n; j++) if((i >> j) & 1) tmp += t[j];
		
		if(tmp > T) continue;
		vec.push_back(i);
		li[i] = true;
	}
	
	if(li[(1 << n) - 1]) {
		cout << 1 << endl;
		return 0;
	}
	
	std::vector<int> dp(1 << n, 1 << 30); dp[0] = 0;
	for(int i = 0; i < (1 << n); i++) {
		for(auto bit : vec) {
			if(i & bit) continue;
			
			dp[i | bit] = std::min(dp[i | bit], dp[i] + 1);
		}
	}
	
	cout << dp[(1 << n) - 1] << endl;
	return 0;
}
0