結果

問題 No.332 数列をプレゼントに
ユーザー yosupotyosupot
提出日時 2015-12-26 01:46:37
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,594 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 105,788 KB
実行使用メモリ 112,000 KB
最終ジャッジ日時 2024-06-06 15:33:29
合計ジャッジ時間 8,539 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
7,680 KB
testcase_01 AC 7 ms
6,784 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 95 ms
57,728 KB
testcase_06 AC 123 ms
71,680 KB
testcase_07 AC 165 ms
95,616 KB
testcase_08 AC 124 ms
72,960 KB
testcase_09 AC 13 ms
9,856 KB
testcase_10 AC 22 ms
12,928 KB
testcase_11 AC 90 ms
55,552 KB
testcase_12 AC 169 ms
100,096 KB
testcase_13 AC 132 ms
78,080 KB
testcase_14 AC 65 ms
40,320 KB
testcase_15 AC 159 ms
94,464 KB
testcase_16 AC 137 ms
82,688 KB
testcase_17 AC 162 ms
96,768 KB
testcase_18 AC 122 ms
72,704 KB
testcase_19 AC 133 ms
80,256 KB
testcase_20 AC 165 ms
93,568 KB
testcase_21 AC 172 ms
101,120 KB
testcase_22 AC 151 ms
90,240 KB
testcase_23 AC 165 ms
97,792 KB
testcase_24 AC 164 ms
97,920 KB
testcase_25 AC 170 ms
97,792 KB
testcase_26 AC 164 ms
97,792 KB
testcase_27 AC 165 ms
97,792 KB
testcase_28 AC 168 ms
97,792 KB
testcase_29 AC 164 ms
97,792 KB
testcase_30 AC 166 ms
97,920 KB
testcase_31 AC 163 ms
97,792 KB
testcase_32 AC 167 ms
97,792 KB
testcase_33 AC 165 ms
94,464 KB
testcase_34 AC 171 ms
92,288 KB
testcase_35 AC 229 ms
90,112 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 169 ms
101,120 KB
testcase_38 AC 170 ms
101,120 KB
testcase_39 AC 167 ms
100,864 KB
testcase_40 AC 185 ms
111,872 KB
testcase_41 AC 189 ms
112,000 KB
testcase_42 AC 185 ms
111,872 KB
testcase_43 AC 182 ms
111,872 KB
testcase_44 AC 185 ms
111,872 KB
testcase_45 AC 187 ms
109,568 KB
testcase_46 AC 82 ms
50,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cassert>
#include <cstring>
#include <vector>
#include <valarray>
#include <array>
#include <queue>
#include <set>
#include <unordered_set>
#include <map>
#include <unordered_map>
#include <algorithm>
#include <cmath>
#include <complex>
#include <random>

using namespace std;
using ll = long long;

using P = pair<ll, ll>;

ll x;
vector<P> big;
vector<P> small;
const int MN = 110;
const int B = 10100;

void solve() {
	int n = small.size();
	static bool dp[MN][B*MN] = {};
	dp[0][0] = true;
	for (int i = 1; i <= n; i++) {
		int d = small[i-1].first;
		for (int j = 0; j < B*MN; j++) {
			dp[i][j] = dp[i-1][j];
			if (j >= d) {
				dp[i][j] |= dp[i-1][j-d];
			}
		}
	}

	int m = (int)big.size();

	for (int i = 0; i < (1<<m); i++) {
		ll sm = x;
		for (int j = 0; j < m; j++) {
			if ((i>>j) & 1) {
				sm -= big[j].first;
			}
		}
		if (0 <= sm && sm < MN*B && dp[n][sm]) {
			static bool res[MN];
			for (int j = 0; j < m; j++) {
				if ((i>>j) & 1) {
					res[big[j].second] = true;
				}
			}
			for (int j = n; j >= 1; j--) {
				if (dp[j-1][sm]) {
					continue;
				}
				sm -= small[j-1].first;
				res[small[j-1].second] = true;
			}

			string s = "";

			for (int j = 0; j < n+m; j++) {
				if (res[j]) {
					s += 'o';
				} else {
					s += 'x';
				}
			}

			cout << s << endl;
			return;
		}
	}
	cout << "No" << endl;
}


int main() {
	int n;
	cin >> n >> x;
	for (int i = 0; i < n; i++) {
		int a;
		cin >> a;
		if (a < B) {
			small.push_back(P(a, i));
		} else {
			big.push_back(P(a, i));
		}
	}

	solve();
    return 0;
}
0