結果

問題 No.332 数列をプレゼントに
ユーザー beetbeet
提出日時 2018-11-08 15:40:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,266 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 207,972 KB
実行使用メモリ 273,352 KB
最終ジャッジ日時 2024-11-20 21:02:45
合計ジャッジ時間 28,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,644 KB
testcase_01 AC 2 ms
14,588 KB
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 1 ms
15,668 KB
testcase_04 AC 2 ms
13,764 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 70 ms
18,524 KB
testcase_08 TLE -
testcase_09 AC 3 ms
17,764 KB
testcase_10 AC 6 ms
13,448 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 66 ms
10,912 KB
testcase_18 RE -
testcase_19 AC 56 ms
14,272 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 75 ms
11,232 KB
testcase_25 AC 73 ms
11,136 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 70 ms
11,144 KB
testcase_29 AC 75 ms
11,108 KB
testcase_30 RE -
testcase_31 AC 77 ms
11,240 KB
testcase_32 AC 72 ms
11,164 KB
testcase_33 AC 71 ms
12,044 KB
testcase_34 AC 68 ms
15,248 KB
testcase_35 AC 76 ms
27,488 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 RE -
testcase_38 AC 72 ms
11,184 KB
testcase_39 RE -
testcase_40 AC 83 ms
11,004 KB
testcase_41 AC 79 ms
11,004 KB
testcase_42 AC 85 ms
11,040 KB
testcase_43 AC 84 ms
11,120 KB
testcase_44 RE -
testcase_45 MLE -
testcase_46 AC 19 ms
13,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  Int n,x;
  cin>>n>>x;
  vector<Int> a(n);
  for(Int i=0;i<n;i++) cin>>a[i];

  const Int MAX = 1e4;
  using P = pair<Int, Int>;
  vector<P> vp,kp;
  for(Int i=0;i<n;i++){
    if(a[i]>=MAX) vp.emplace_back(a[i],i);
    else kp.emplace_back(a[i],i);
  }

  vector<Int> dp(n*MAX,-1);
  dp[0]=n;
  for(Int i=0;i<(Int)kp.size();i++){
    for(Int j=n*MAX-1;j>=0;j--){
      if(dp[j]<0||j+kp[i].first>=n*MAX) continue;
      if(~dp[j+kp[i].first]) continue;
      dp[j+kp[i].first]=kp[i].second;
    }    
  }

  Int s=1<<vp.size();
  vector<Int> sm(s,0),bs(s,0);
  for(Int i=0;i<(Int)vp.size();i++) bs[1<<i]=i;  
  for(Int i=1;i<s;i++)
    sm[i]=sm[i^(i&-i)]+vp[bs[i&-i]].first;

  for(Int i=0;i<s;i++){
    Int d=x-sm[i];
    if(d<0||d>=n*MAX||dp[d]<0) continue;

    string ans(n,'x');
    for(Int j=0;j<(Int)vp.size();j++)
      if((i>>j)&1) ans[vp[j].second]='o';
    
    while(dp[d]<n){
      ans[dp[d]]='o';
      d=dp[d];
    }

    cout<<ans<<endl;
    return 0;
  }
  cout<<"No"<<endl;
  return 0;
}
0