結果

問題 No.332 数列をプレゼントに
ユーザー rickythetarickytheta
提出日時 2015-12-25 20:14:14
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 2,222 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 183,568 KB
実行使用メモリ 70,316 KB
最終ジャッジ日時 2023-10-19 03:47:09
合計ジャッジ時間 11,928 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 1 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 83 ms
4,348 KB
testcase_06 RE -
testcase_07 AC 468 ms
28,608 KB
testcase_08 AC 83 ms
4,348 KB
testcase_09 AC 3 ms
4,348 KB
testcase_10 RE -
testcase_11 AC 83 ms
4,348 KB
testcase_12 RE -
testcase_13 AC 84 ms
4,348 KB
testcase_14 RE -
testcase_15 AC 100 ms
4,348 KB
testcase_16 AC 95 ms
4,624 KB
testcase_17 RE -
testcase_18 AC 124 ms
5,768 KB
testcase_19 AC 90 ms
4,640 KB
testcase_20 AC 84 ms
4,348 KB
testcase_21 RE -
testcase_22 AC 97 ms
4,348 KB
testcase_23 RE -
testcase_24 AC 670 ms
70,316 KB
testcase_25 WA -
testcase_26 RE -
testcase_27 WA -
testcase_28 WA -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 82 ms
4,348 KB
testcase_32 AC 111 ms
9,104 KB
testcase_33 AC 99 ms
4,800 KB
testcase_34 AC 113 ms
4,828 KB
testcase_35 AC 115 ms
4,844 KB
testcase_36 AC 2 ms
4,348 KB
testcase_37 WA -
testcase_38 AC 100 ms
4,784 KB
testcase_39 WA -
testcase_40 AC 88 ms
4,348 KB
testcase_41 AC 83 ms
4,348 KB
testcase_42 AC 88 ms
4,348 KB
testcase_43 AC 106 ms
4,348 KB
testcase_44 WA -
testcase_45 AC 108 ms
5,068 KB
testcase_46 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef complex<double> P;
typedef pair<int,int> pii;
#define REP(i,n) for(ll i=0;i<n;++i)
#define REPR(i,n) for(ll i=1;i<n;++i)
#define FOR(i,a,b) for(ll i=a;i<b;++i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

#define MOD (ll)(1e9+7)
#define ADD(a,b) a=((a)+(b))%MOD
#define FIX(a) ((a)%MOD+MOD)%MOD

int main(){
  ll n,x;
  cin>>n>>x;
  vl a(n);
  REP(i,n)cin>>a[i];

  // 先頭20個を別扱いにする解法

  vl b = a;
  sort(ALL(b),greater<ll>());
  vl c,d;
  ll dsz = min<int>(20,n);
  ll csz = n-dsz;
  REP(i,dsz)d.push_back(b[i]);
  FOR(i,dsz,csz)c.push_back(b[i]);

  // ナップサック
  ll cmax = 0;
  REP(i,csz)cmax += c[i];
  cmax = min(cmax,x);
  vector< vector<bool> > dp(csz+1,vector<bool>(cmax+1,false));
  vector< vector<bool> > pred(csz+1,vector<bool>(cmax+1,false));
  dp[0][0] = true;
  REP(i,csz){
    ll cost = c[i];
    REP(p,cmax+1){
      if(!dp[i][p])continue;
      dp[i+1][p] = true;
      pred[i+1][p] = false;
      if(p+cost<=cmax){
        dp[i+1][p+cost] = true;
        pred[i+1][p+cost] = true;
      }
    }
  }

  // 大きい値の全探索
  map<ll,ll> XS;
  REP(mask,1<<dsz){
    ll s = 0;
    REP(i,dsz) if(mask>>i&1) s+=d[i];
    if(s>x)continue;
    XS[s] = mask;
  }

  // 合体
  ll ansid = -1;
  REP(i,cmax+1){
    if(dp[csz][i]&&XS.count(x-i)){
      ansid = i;
      break;
    }
  }

  if(ansid==-1){
    cout << "No" << endl;
    return 0;
  }

  // 復元
  multiset<ll> result; // ここに使う値をぶっこんでいく

  // dp,predから
  ll cst = ansid;
  REP(_i,csz){
    ll i = csz-_i;
    if(pred[i][cst]){
      result.insert(c[i-1]);
      cst -= c[i-1];
    }
  }
  assert(cst==0);

  // 全探索のmaskから
  ll mask = XS[x-ansid];
  REP(i,dsz){
    if(mask>>i&1)result.insert(d[i]);
  }

  // 出力
  multiset<ll>::iterator iter;
  REP(i,n){
    iter = result.find(a[i]);
    if(iter!=result.end()){
      cout<<"o";
      result.erase(iter);
    }else{
      cout<<"x";
    }
  }
  cout<<endl;

  return 0;
}
0