結果

問題 No.332 数列をプレゼントに
ユーザー zerokugizerokugi
提出日時 2015-12-25 01:35:52
言語 C++11
(gcc 11.4.0)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 3,186 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 99,592 KB
最終ジャッジ日時 2023-08-25 21:12:29
合計ジャッジ時間 1,097 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’:
main.cpp:81:12: error: ‘accumulate’ was not declared in this scope
  int sum = accumulate(ALL(sm), 0);
            ^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cmath>
#include <cstring>
#include <cstdlib>
#include <climits>
#include <ctime>
#include <queue>
#include <stack>
#include <algorithm>
#include <list>
#include <vector>
#include <set>
#include <map>
#include <iostream>
#include <deque>
#include <complex>
#include <string>
#include <iomanip>
#include <sstream>
#include <bitset>
#include <valarray>
#include <unordered_map>
#include <iterator>
#include <functional>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef unsigned int uint;
typedef unsigned char uchar;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

#define REP(i,x) for(int i=0;i<(int)(x);i++)
#define REPS(i,x) for(int i=1;i<=(int)(x);i++)
#define RREP(i,x) for(int i=((int)(x)-1);i>=0;i--)
#define RREPS(i,x) for(int i=((int)(x));i>0;i--)
#define FOR(i,c) for(__typeof((c).begin())i=(c).begin();i!=(c).end();i++)
#define RFOR(i,c) for(__typeof((c).rbegin())i=(c).rbegin();i!=(c).rend();i++)
#define ALL(container) (container).begin(), (container).end()
#define RALL(container) (container).rbegin(), (container).rend()
#define SZ(container) ((int)container.size())
#define mp(a,b) make_pair(a, b)
#define pb push_back
#define eb emplace_back
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }
template<class T> ostream& operator<<(ostream &os, const vector<T> &t) {
os<<"["; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"]"; return os;
}
template<class T> ostream& operator<<(ostream &os, const set<T> &t) {
os<<"{"; FOR(it,t) {if(it!=t.begin()) os<<","; os<<*it;} os<<"}"; return os;
}
template<class S, class T> ostream& operator<<(ostream &os, const pair<S,T> &t) { return os<<"("<<t.first<<","<<t.second<<")";}
template<class S, class T> pair<S,T> operator+(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first+t.first, s.second+t.second);}
template<class S, class T> pair<S,T> operator-(const pair<S,T> &s, const pair<S,T> &t){ return pair<S,T>(s.first-t.first, s.second-t.second);}

const int INF = 1<<28;
const double EPS = 1e-8;
const int MOD = 1000000007;


int T, n, m;
ll X;

int main(int argc, char *argv[]){
	ios::sync_with_stdio(false);
	cin >> n >> X;
	map<int, vi> idx;
	vi sm, la;
	REP(i, n){
		int x;
		cin >> x;
		idx[x].pb(i);
		if(x < 100000) sm.pb(x);
		else la.pb(x);
	}
	int sum = accumulate(ALL(sm), 0);
	vi dp(sum+1, -1);
	dp[0] = 0;
	for(int w : sm)RREP(i, sum+1-w) if(dp[i] >= 0 && dp[i+w] == -1){
		dp[i+w] = i;
	}
	m = la.size();
	REP(s, 1<<m){
		ll rest = X;
		REP(j, m)if(1&(s>>j)) rest -= la[j];
		if(0 <= rest && rest <= sum && dp[rest] >= 0){
			string ans(n, 'x');
			while(rest){
				int w = rest - dp[rest];
				rest = dp[rest];
				if(idx[w].empty()){
					return 0;
				}
				ans[idx[w].back()] = 'o';
				idx[w].pop_back();
			}
			REP(j, m)if(1&(s>>j)){
				ans[idx[la[j]].back()] = 'o';
				idx[la[j]].pop_back();
			}
			cout << ans << endl;
			return 0;
		}
	}
	cout << "No" << endl;
	return 0;
}
0