結果

問題 No.733 分身並列コーディング
ユーザー startcppstartcpp
提出日時 2018-09-07 22:22:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,082 ms / 1,500 ms
コード長 793 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 58,776 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 02:54:52
合計ジャッジ時間 11,129 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 10 ms
6,940 KB
testcase_05 AC 1,082 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 998 ms
6,944 KB
testcase_08 AC 1,052 ms
6,940 KB
testcase_09 AC 41 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 4 ms
6,944 KB
testcase_19 AC 16 ms
6,940 KB
testcase_20 AC 68 ms
6,940 KB
testcase_21 AC 10 ms
6,944 KB
testcase_22 AC 56 ms
6,944 KB
testcase_23 AC 7 ms
6,940 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1,027 ms
6,940 KB
testcase_29 AC 347 ms
6,940 KB
testcase_30 AC 322 ms
6,944 KB
testcase_31 AC 321 ms
6,944 KB
testcase_32 AC 18 ms
6,944 KB
testcase_33 AC 13 ms
6,940 KB
testcase_34 AC 15 ms
6,940 KB
testcase_35 AC 18 ms
6,944 KB
testcase_36 AC 17 ms
6,944 KB
testcase_37 AC 17 ms
6,940 KB
testcase_38 AC 519 ms
6,940 KB
testcase_39 AC 517 ms
6,940 KB
testcase_40 AC 377 ms
6,944 KB
testcase_41 AC 14 ms
6,944 KB
testcase_42 AC 13 ms
6,944 KB
testcase_43 AC 19 ms
6,940 KB
testcase_44 AC 428 ms
6,944 KB
testcase_45 AC 520 ms
6,944 KB
testcase_46 AC 491 ms
6,940 KB
testcase_47 AC 436 ms
6,940 KB
testcase_48 AC 463 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//TLEその2
#include <iostream>
#include <algorithm>
#define rep(i, n) for(i = 0; i < n; i++)
using namespace std;

int T, n;
int t[17];
int dp[1 << 17];

int dfs(int rem) {
	int i, j;
	if (rem == 0) return 0;
	if (dp[rem] != -1) return dp[rem];
	
	int id[17], cnt = 0;
	rep(i, n) {
		if ((rem >> i) & 1) {
			id[cnt++] = i;
		}
	}
	
	int ret = n;
	rep(i, (1 << (cnt - 1))) {
		int sumT = t[id[0]], sol = (1 << id[0]);
		rep(j, cnt - 1) {
			if ((i >> j) & 1) {
				sumT += t[id[j + 1]];
				sol += (1 << id[j + 1]);
			}
		}
		if (sumT <= T) {
			int res = dfs(rem - sol) + 1;
			ret = min(ret, res);
		}
	}
	return dp[rem] = ret;
}

int main() {
	int i;
	
	cin >> T >> n;
	rep(i, n) cin >> t[i];
	rep(i, (1 << n)) dp[i] = -1;
	int res = dfs((1 << n) - 1);
	cout << res << endl;
	return 0;
}
0