結果

問題 No.10 +か×か
ユーザー ldsybldsyb
提出日時 2017-07-18 19:36:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 774 ms
コンパイル使用メモリ 67,712 KB
実行使用メモリ 42,496 KB
最終ジャッジ日時 2024-05-08 11:55:55
合計ジャッジ時間 1,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 27 ms
42,496 KB
testcase_04 AC 13 ms
29,036 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 28 ms
42,496 KB
testcase_07 AC 16 ms
29,112 KB
testcase_08 AC 7 ms
10,772 KB
testcase_09 AC 8 ms
17,152 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;

int main(){
	int64_t n, total;
	cin >> n >> total;
	int64_t a[n], inf = 1ll << n;
	for(int i = 0; i < n; i++) cin >> a[i];
	int64_t dp[n][total + 1];
	fill(dp[0], dp[n], inf);
	dp[0][a[0]] = 0;
	for(int i = 1; i < n; i++) for(int j = 0; j <= total; j++) if(dp[i - 1][j] != inf){
		if(j + a[i] <= total) dp[i][j + a[i]] = min(dp[i][j + a[i]], 2 * dp[i - 1][j]);
		if(j * a[i] <= total) dp[i][j * a[i]] = min(dp[i][j * a[i]], 2 * dp[i - 1][j] + 1);
	}
	for(int i = n - 2; 0 <= i; i--) cout << ((dp[n - 1][total] >> i) % 2 == 0 ? '+' : '*');
	cout << endl;
}
0