結果

問題 No.332 数列をプレゼントに
ユーザー rickythetarickytheta
提出日時 2015-12-25 20:05:51
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 2,236 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 184,084 KB
実行使用メモリ 813,152 KB
最終ジャッジ日時 2023-10-19 03:46:41
合計ジャッジ時間 14,346 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 491 ms
28,604 KB
testcase_08 AC 83 ms
4,348 KB
testcase_09 AC 3 ms
4,348 KB
testcase_10 RE -
testcase_11 AC 84 ms
4,348 KB
testcase_12 RE -
testcase_13 AC 83 ms
4,348 KB
testcase_14 WA -
testcase_15 AC 99 ms
4,348 KB
testcase_16 AC 94 ms
4,620 KB
testcase_17 RE -
testcase_18 AC 124 ms
5,764 KB
testcase_19 AC 92 ms
4,636 KB
testcase_20 AC 83 ms
4,348 KB
testcase_21 AC 102 ms
4,348 KB
testcase_22 AC 97 ms
4,348 KB
testcase_23 RE -
testcase_24 AC 661 ms
70,312 KB
testcase_25 RE -
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 113 ms
9,100 KB
testcase_33 AC 97 ms
4,796 KB
testcase_34 AC 114 ms
4,824 KB
testcase_35 AC 115 ms
4,840 KB
testcase_36 AC 1 ms
4,348 KB
testcase_37 WA -
testcase_38 AC 101 ms
4,780 KB
testcase_39 WA -
testcase_40 AC 87 ms
4,348 KB
testcase_41 AC 83 ms
4,348 KB
testcase_42 AC 87 ms
4,348 KB
testcase_43 AC 106 ms
4,348 KB
testcase_44 RE -
testcase_45 AC 108 ms
5,080 KB
testcase_46 MLE -
権限があれば一括ダウンロードができます

ソースコード

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 = min<int>(100,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