結果

問題 No.332 数列をプレゼントに
ユーザー pew pew pewpew pew pew
提出日時 2024-10-03 22:20:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 1,152 bytes
コンパイル時間 1,575 ms
コンパイル使用メモリ 171,416 KB
実行使用メモリ 124,840 KB
最終ジャッジ日時 2024-10-03 22:20:57
合計ジャッジ時間 5,035 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
124,676 KB
testcase_01 AC 31 ms
124,744 KB
testcase_02 AC 30 ms
124,680 KB
testcase_03 AC 31 ms
124,732 KB
testcase_04 AC 30 ms
124,684 KB
testcase_05 AC 39 ms
124,776 KB
testcase_06 AC 37 ms
124,768 KB
testcase_07 AC 43 ms
124,772 KB
testcase_08 AC 37 ms
124,668 KB
testcase_09 AC 32 ms
124,716 KB
testcase_10 AC 32 ms
124,664 KB
testcase_11 AC 34 ms
124,660 KB
testcase_12 AC 40 ms
124,656 KB
testcase_13 AC 32 ms
124,708 KB
testcase_14 AC 36 ms
124,656 KB
testcase_15 AC 33 ms
124,700 KB
testcase_16 AC 31 ms
124,772 KB
testcase_17 AC 30 ms
124,840 KB
testcase_18 AC 60 ms
124,656 KB
testcase_19 AC 31 ms
124,696 KB
testcase_20 AC 32 ms
124,672 KB
testcase_21 AC 31 ms
124,764 KB
testcase_22 AC 32 ms
124,652 KB
testcase_23 AC 38 ms
124,676 KB
testcase_24 AC 38 ms
124,724 KB
testcase_25 AC 37 ms
124,668 KB
testcase_26 AC 37 ms
124,708 KB
testcase_27 AC 38 ms
124,620 KB
testcase_28 AC 38 ms
124,600 KB
testcase_29 AC 37 ms
124,708 KB
testcase_30 AC 37 ms
124,536 KB
testcase_31 AC 38 ms
124,572 KB
testcase_32 AC 39 ms
124,680 KB
testcase_33 AC 36 ms
124,768 KB
testcase_34 AC 47 ms
124,664 KB
testcase_35 AC 91 ms
124,564 KB
testcase_36 AC 32 ms
124,664 KB
testcase_37 AC 32 ms
124,764 KB
testcase_38 AC 30 ms
124,664 KB
testcase_39 AC 31 ms
124,660 KB
testcase_40 AC 31 ms
124,744 KB
testcase_41 AC 32 ms
124,584 KB
testcase_42 AC 31 ms
124,780 KB
testcase_43 AC 32 ms
124,560 KB
testcase_44 AC 32 ms
124,676 KB
testcase_45 AC 47 ms
124,752 KB
testcase_46 AC 31 ms
124,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <ll, ll> P; 
 
const int N = 310;
const int M = 50010;
ll n, t, les, mor;
ll dp[N * M];
P p[N];
bool vis[N];

int main()
{
	scanf("%lld%lld", &n, &t);
	for (int i = 0; i < n; i++) scanf("%lld", &p[i].first), p[i].second = i;
	sort(p, p + n);
	les = 0;
	while (les < n && p[les].first < M) les++;
	mor = n - les;
	memset(dp, -1, sizeof(dp));
	dp[0] = 0;
	for (int i = 0; i < les; i++)
	{
		for (int j = p[i].first * (i + 1); j >= p[i].first; j--)
		{
			if (dp[j] == -1) dp[j] = (dp[j - p[i].first] != -1) ? i : -1;
		}
	}
	for (int S = 0, sum; S < (1 << mor); S++)
	{
		sum = t;
		for (int i = 0; i < mor; i++) if (S & (1 << i)) sum -= p[i + les].first;
		if (sum >= 0 && sum < n * M)
		{
			if (dp[sum] == -1) continue;
			for (int i = 0; i < mor; i++) if (S & (1 << i)) vis[p[i + les].second] = true;
			while (sum)
			{
				vis[p[dp[sum]].second] = true;
				sum -= p[dp[sum]].first;
			}
			for (int i = 0; i < n; i++) printf(vis[i] ? "o" : "x");
			printf("\n");
			exit(0);
		}
	}
	printf("No\n");
    return 0;
}
0