結果

問題 No.332 数列をプレゼントに
ユーザー mayoko_
提出日時 2015-12-25 11:21:18
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 1,998 bytes
コンパイル時間 717 ms
コンパイル使用メモリ 88,960 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-12-24 07:30:16
合計ジャッジ時間 3,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
//#include<cctype>
#include<climits>
#include<iostream>
#include<string>
#include<vector>
#include<map>
//#include<list>
#include<queue>
#include<deque>
#include<algorithm>
//#include<numeric>
#include<utility>
#include<complex>
//#include<memory>
#include<functional>
#include<cassert>
#include<set>
#include<stack>
const int dx[] = {1, 0, -1, 0};
const int dy[] = {0, 1, 0, -1};
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vll;
typedef pair<int, int> pii;
const int MAXN = 111;
const int MAX = 50000;
pii A[MAXN];
int dp[MAXN*MAX];
bool use[MAXN];
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int N;
ll X;
cin >> N >> X;
for (int i = 0; i < N; i++) {
cin >> A[i].first;
A[i].second = i;
}
sort(A, A+N);
int cnt = 0;
memset(dp, -1, sizeof(dp));
dp[0] = 0;
for (; cnt < N && A[cnt].first < MAX; cnt++) {}
for (int i = 0; i < cnt; i++) {
for (int j = (i+1)*A[i].first; j >= A[i].first; j--) {
if (dp[j] != -1) continue;
if (dp[j-A[i].first] == -1) continue;
dp[j] = i;
}
}
int rest = N-cnt;
for (int s = 0; s < 1<<rest; s++) {
ll sum = 0;
for (int i = 0; i < rest; i++) {
if ((s>>i)&1) sum += A[cnt+i].first;
}
ll tar = X-sum;
if (0 <= tar && tar < MAXN*MAX && dp[tar] != -1) {
for (int i = 0; i < rest; i++) {
if ((s>>i)&1) use[A[i+cnt].second] = true;
}
ll now = tar;
while (now != 0) {
use[A[dp[now]].second] = true;
now -= A[dp[now]].first;
}
for (int i = 0; i < N; i++) {
if (use[i]) cout << "o";
else cout << "x";
}
cout << endl;
return 0;
}
}
cout << "No" << endl;
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0