結果

問題 No.733 分身並列コーディング
ユーザー startcppstartcpp
提出日時 2018-09-07 22:19:50
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 768 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 129,368 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-11-30 12:40:51
合計ジャッジ時間 58,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
8,960 KB
testcase_02 AC 2 ms
8,960 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1 ms
10,496 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 59 ms
8,704 KB
testcase_11 AC 56 ms
10,496 KB
testcase_12 AC 2 ms
8,960 KB
testcase_13 AC 2 ms
10,496 KB
testcase_14 AC 662 ms
9,088 KB
testcase_15 AC 17 ms
10,496 KB
testcase_16 AC 1 ms
8,960 KB
testcase_17 AC 2 ms
10,496 KB
testcase_18 AC 62 ms
8,960 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 AC 685 ms
10,496 KB
testcase_22 TLE -
testcase_23 AC 675 ms
10,496 KB
testcase_24 AC 679 ms
8,832 KB
testcase_25 AC 2 ms
10,496 KB
testcase_26 AC 1 ms
8,832 KB
testcase_27 AC 17 ms
10,496 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 204 ms
9,088 KB
testcase_33 AC 205 ms
10,496 KB
testcase_34 AC 198 ms
6,816 KB
testcase_35 AC 206 ms
6,820 KB
testcase_36 AC 199 ms
5,248 KB
testcase_37 AC 198 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 AC 204 ms
5,248 KB
testcase_42 AC 205 ms
5,248 KB
testcase_43 AC 200 ms
5,248 KB
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

//TLE解法
#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)) {
		int sumT = 0, sol = 0;
		rep(j, cnt) {
			if ((i >> j) & 1) {
				sumT += t[id[j]];
				sol += (1 << id[j]);
			}
		}
		if (sumT <= T && sol != 0) {
			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