結果

問題 No.332 数列をプレゼントに
ユーザー snukesnuke
提出日時 2015-12-25 00:41:03
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 2,028 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 88,776 KB
実行使用メモリ 83,716 KB
最終ジャッジ日時 2024-06-06 15:15:21
合計ジャッジ時間 6,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,376 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 34 ms
43,520 KB
testcase_06 AC 44 ms
56,192 KB
testcase_07 AC 131 ms
79,616 KB
testcase_08 AC 44 ms
58,112 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 73 ms
10,496 KB
testcase_11 AC 31 ms
41,600 KB
testcase_12 AC 63 ms
81,664 KB
testcase_13 AC 48 ms
61,056 KB
testcase_14 AC 24 ms
29,056 KB
testcase_15 AC 54 ms
67,968 KB
testcase_16 AC 55 ms
70,912 KB
testcase_17 AC 64 ms
81,664 KB
testcase_18 AC 55 ms
71,040 KB
testcase_19 AC 57 ms
72,832 KB
testcase_20 AC 53 ms
67,072 KB
testcase_21 AC 58 ms
73,984 KB
testcase_22 AC 50 ms
64,000 KB
testcase_23 AC 84 ms
83,584 KB
testcase_24 AC 132 ms
83,584 KB
testcase_25 AC 131 ms
83,584 KB
testcase_26 AC 98 ms
83,584 KB
testcase_27 AC 65 ms
83,408 KB
testcase_28 AC 129 ms
83,584 KB
testcase_29 AC 129 ms
83,660 KB
testcase_30 AC 72 ms
83,528 KB
testcase_31 AC 130 ms
83,584 KB
testcase_32 AC 130 ms
83,712 KB
testcase_33 AC 131 ms
83,548 KB
testcase_34 AC 132 ms
83,584 KB
testcase_35 AC 133 ms
83,664 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 132 ms
83,716 KB
testcase_38 AC 131 ms
83,564 KB
testcase_39 AC 100 ms
83,456 KB
testcase_40 AC 133 ms
83,584 KB
testcase_41 AC 131 ms
83,584 KB
testcase_42 AC 134 ms
83,584 KB
testcase_43 AC 131 ms
83,680 KB
testcase_44 AC 67 ms
83,492 KB
testcase_45 AC 132 ms
83,584 KB
testcase_46 AC 89 ms
29,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:53:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   53 |   scanf("%d%lld",&n,&x);
      |   ~~~~~^~~~~~~~~~~~~~~~
main.cpp:54:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   54 |   rep(i,n) scanf("%d",&a[i]), id[i] = i;
      |            ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <string>
#include <string.h>
#include <cstdlib>
#include <ctime>
#include <cmath>
#include <map>
#include <set>
#include <iostream>
#include <sstream>
#include <numeric>
#include <cctype>
#include <bitset>
#define fi first
#define se second
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define rrep(i,n) for(int i = 1; i <= (n); ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
#define gep(i,g,j) for(int i = g.head[j]; i != -1; i = g.e[i].next)
#define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++)
#define rng(a) a.begin(),a.end()
#define maxs(x,y) x = max(x,y)
#define mins(x,y) x = min(x,y)
#define pb push_back
#define sz(x) (int)(x).size()
#define pcnt __builtin_popcount
#define snuke srand((unsigned)clock()+(unsigned)time(NULL));
#define df(x) int x = in()
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
typedef vector<int> vi;
typedef vector<vi> vvi;
inline int in() { int x; scanf("%d",&x); return x;}
inline void priv(vi a) { rep(i,sz(a)) printf("%d%c",a[i],i==sz(a)-1?'\n':' ');}

const int MX = 105, MY = 8000005, INF = 1000010000;
const ll LINF = 1000000000000000000ll;
const double eps = 1e-10;

int n;
ll x;
int a[MX], id[MX];
bitset<MY> dp[81];
map<int,int> mp;

int main() {
  scanf("%d%lld",&n,&x);
  rep(i,n) scanf("%d",&a[i]), id[i] = i;
  sort(id,id+n,[&](int x, int y){return a[x]<a[y];});
  int m = min(20,n);
  vi s;
  rep(i,m) s.pb(id[n-i-1]);
  n -= m;
  dp[0][0] = true;
  rep(i,n) dp[i+1] = dp[i]<<a[id[i]]|dp[i];
  rep(i,1<<m) {
    ll sum = 0;
    rep(j,m) if (i>>j&1) sum += a[s[j]];
    ll r = x-sum;
    if (0 <= r && r <= MY && dp[n][r]) {
      string ans = string(n+m,'x');
      rep(j,m) if (i>>j&1) ans[s[j]] = 'o';
      drep(j,n) {
        int na = a[id[j]];
        if (na <= r && dp[j][r-na]) ans[id[j]] = 'o', r -= na;
      }
      cout<<ans<<endl;
      return 0;
    }
  }
  puts("No");
  return 0;
}




0