結果

問題 No.332 数列をプレゼントに
ユーザー yosupotyosupot
提出日時 2015-12-26 01:46:37
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,594 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 105,660 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-12-24 07:38:12
合計ジャッジ時間 10,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
7,552 KB
testcase_01 AC 9 ms
6,656 KB
testcase_02 AC 4 ms
5,248 KB
testcase_03 AC 4 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 108 ms
57,600 KB
testcase_06 AC 137 ms
71,808 KB
testcase_07 AC 186 ms
95,616 KB
testcase_08 AC 141 ms
72,704 KB
testcase_09 AC 15 ms
9,984 KB
testcase_10 AC 26 ms
13,184 KB
testcase_11 AC 105 ms
55,424 KB
testcase_12 AC 193 ms
99,968 KB
testcase_13 AC 151 ms
78,208 KB
testcase_14 AC 72 ms
40,192 KB
testcase_15 AC 183 ms
94,592 KB
testcase_16 AC 156 ms
82,688 KB
testcase_17 AC 187 ms
96,768 KB
testcase_18 AC 143 ms
72,960 KB
testcase_19 AC 155 ms
80,512 KB
testcase_20 AC 178 ms
93,440 KB
testcase_21 AC 199 ms
101,120 KB
testcase_22 AC 172 ms
89,984 KB
testcase_23 AC 189 ms
97,792 KB
testcase_24 AC 188 ms
97,792 KB
testcase_25 AC 189 ms
97,920 KB
testcase_26 AC 192 ms
97,920 KB
testcase_27 AC 187 ms
97,920 KB
testcase_28 AC 189 ms
97,792 KB
testcase_29 AC 188 ms
97,792 KB
testcase_30 AC 191 ms
97,792 KB
testcase_31 AC 192 ms
97,792 KB
testcase_32 AC 190 ms
97,792 KB
testcase_33 AC 187 ms
94,592 KB
testcase_34 AC 198 ms
92,416 KB
testcase_35 AC 263 ms
90,112 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 198 ms
101,120 KB
testcase_38 AC 200 ms
100,992 KB
testcase_39 AC 197 ms
101,120 KB
testcase_40 AC 215 ms
111,872 KB
testcase_41 AC 217 ms
111,872 KB
testcase_42 AC 216 ms
111,872 KB
testcase_43 AC 220 ms
111,872 KB
testcase_44 AC 216 ms
111,872 KB
testcase_45 AC 212 ms
109,696 KB
testcase_46 AC 91 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