結果

問題 No.332 数列をプレゼントに
ユーザー climpetclimpet
提出日時 2015-12-25 00:35:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 1,167 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 69,236 KB
実行使用メモリ 128,952 KB
最終ジャッジ日時 2024-06-06 15:14:51
合計ジャッジ時間 6,135 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,648 KB
testcase_01 AC 7 ms
10,368 KB
testcase_02 AC 4 ms
8,032 KB
testcase_03 AC 6 ms
8,064 KB
testcase_04 AC 4 ms
6,784 KB
testcase_05 AC 67 ms
75,244 KB
testcase_06 AC 77 ms
88,700 KB
testcase_07 AC 105 ms
116,608 KB
testcase_08 AC 83 ms
92,292 KB
testcase_09 AC 11 ms
15,232 KB
testcase_10 AC 20 ms
25,016 KB
testcase_11 AC 63 ms
70,248 KB
testcase_12 AC 109 ms
119,008 KB
testcase_13 AC 85 ms
93,500 KB
testcase_14 AC 50 ms
55,680 KB
testcase_15 AC 101 ms
109,440 KB
testcase_16 AC 84 ms
96,004 KB
testcase_17 AC 100 ms
111,744 KB
testcase_18 AC 101 ms
113,012 KB
testcase_19 AC 83 ms
93,384 KB
testcase_20 AC 99 ms
108,160 KB
testcase_21 AC 107 ms
116,604 KB
testcase_22 AC 93 ms
104,428 KB
testcase_23 AC 104 ms
116,780 KB
testcase_24 AC 104 ms
116,736 KB
testcase_25 AC 97 ms
116,604 KB
testcase_26 AC 98 ms
116,628 KB
testcase_27 AC 99 ms
116,688 KB
testcase_28 AC 100 ms
116,608 KB
testcase_29 AC 102 ms
116,736 KB
testcase_30 AC 102 ms
116,704 KB
testcase_31 AC 104 ms
116,672 KB
testcase_32 AC 102 ms
116,608 KB
testcase_33 AC 97 ms
109,440 KB
testcase_34 AC 98 ms
107,024 KB
testcase_35 AC 116 ms
128,896 KB
testcase_36 AC 4 ms
6,784 KB
testcase_37 AC 102 ms
116,736 KB
testcase_38 AC 101 ms
116,736 KB
testcase_39 AC 106 ms
116,608 KB
testcase_40 AC 114 ms
128,952 KB
testcase_41 AC 113 ms
128,768 KB
testcase_42 AC 115 ms
128,768 KB
testcase_43 AC 118 ms
128,896 KB
testcase_44 AC 118 ms
128,768 KB
testcase_45 AC 113 ms
127,564 KB
testcase_46 AC 60 ms
59,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <bitset>
#include <cstdlib>
#include <utility>
using namespace std;

const int lim = 100006;
const int sz = lim * 100 + 6;

typedef long long LL;
typedef bitset<sz> bsz;
typedef pair<int,int> pii;
typedef pair<LL,int> pli;

int n;
vector<pii> big, small;
vector<bsz> dp;

void dfs(int k, int S, LL rest){
	if(rest < 0){ return; }
	if(k == (int)big.size()){
		if(rest >= sz || !dp.back()[rest]){ return; }
		string ans(n, 'x');
		for(int i = big.size(); i--; )
		if(S >> i & 1){
			ans[big[i].second] = 'o';
		}
		for(int p = small.size() - 1; p >= 0; --p){
			if(!dp[p][rest]){
				ans[small[p].second] = 'o';
				rest -= small[p].first;
			}
		}
		cout << ans << '\n';
		exit(0);
	}
	else{
		dfs(k + 1, S, rest);
		dfs(k + 1, S | 1 << k, rest - big[k].first);
	}
}

int main(){
	LL x;
	
	cin >> n >> x;
	for(int i = 0; i < n; ++i){
		int a;
		cin >> a;
		(a < lim ? small : big).emplace_back(a, i);
	}
	
	dp.resize(small.size() + 1);
	dp[0].set(0);
	for(size_t i = 0; i < small.size(); ++i){
		dp[i + 1] = dp[i] | dp[i] << small[i].first;
	}
	
	dfs(0, 0, x);
	
	cout << "No\n";
}
0