結果

問題 No.10 +か×か
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-16 00:57:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 751 bytes
コンパイル時間 1,411 ms
コンパイル使用メモリ 163,612 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 11:45:05
合計ジャッジ時間 2,081 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;


int main() {
	int N;
	cin >> N;
	int total;
	cin >> total;
	vector<long long> A(N);
	for (int i = 0; i < N; i++)
	{
		cin >> A[i];
	}

	long long inf = 1ll << N;

	vector<long long> dp(total + 1, inf);
	dp[A[0]] = 0;
	for (int i = 1; i < N; i++)
	{
		vector<long long> dp2(total + 1, inf);
		for (int j = 0; j <= total; j++)
		{
			if (dp[j] == inf) continue;
			if (j + A[i] <= total){
				dp2[j + A[i]] = min(dp2[j + A[i]], dp[j] * 2);
			}
			if (j * A[i] <= total){
				dp2[j * A[i]] = min(dp2[j * A[i]], dp[j] * 2 + 1);
			}
		}
		dp = dp2;
	}
	for (int i = 0; i < N - 1; i++)
	{
		if ((dp[total] >> (N - 2 - i)) % 2 == 1){
			cout << "*";
		}
		else cout << "+";
	}
	cout << endl;
	cin >> N;
}



0