結果

問題 No.332 数列をプレゼントに
ユーザー LayCurseLayCurse
提出日時 2015-12-25 00:54:56
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 4,078 bytes
コンパイル時間 1,949 ms
コンパイル使用メモリ 165,296 KB
実行使用メモリ 44,628 KB
最終ジャッジ日時 2023-10-19 03:09:44
合計ジャッジ時間 11,102 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,752 KB
testcase_01 AC 2 ms
7,756 KB
testcase_02 AC 2 ms
5,704 KB
testcase_03 AC 2 ms
5,704 KB
testcase_04 AC 4 ms
9,800 KB
testcase_05 AC 7 ms
28,232 KB
testcase_06 AC 18 ms
35,036 KB
testcase_07 AC 6 ms
5,704 KB
testcase_08 AC 9 ms
34,380 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 7 ms
28,236 KB
testcase_12 AC 11 ms
44,628 KB
testcase_13 AC 10 ms
36,532 KB
testcase_14 AC 6 ms
24,140 KB
testcase_15 AC 12 ms
38,620 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 9 ms
36,460 KB
testcase_20 AC 10 ms
38,524 KB
testcase_21 AC 10 ms
40,572 KB
testcase_22 AC 10 ms
36,512 KB
testcase_23 RE -
testcase_24 AC 2 ms
5,704 KB
testcase_25 AC 243 ms
44,624 KB
testcase_26 WA -
testcase_27 AC 10 ms
44,616 KB
testcase_28 WA -
testcase_29 AC 6 ms
5,704 KB
testcase_30 WA -
testcase_31 AC 438 ms
44,624 KB
testcase_32 AC 7 ms
5,704 KB
testcase_33 AC 6 ms
5,704 KB
testcase_34 AC 6 ms
5,704 KB
testcase_35 AC 7 ms
5,704 KB
testcase_36 AC 2 ms
5,704 KB
testcase_37 WA -
testcase_38 AC 2 ms
5,704 KB
testcase_39 WA -
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void reader(double*)’:
main.cpp:15:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 | void reader(double *x){scanf("%lf",x);}
      |                        ~~~~~^~~~~~~~~

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define REP(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)

#define mygc(c) (c)=getchar_unlocked()
#define mypc(c) putchar_unlocked(c)

#define ll long long
#define ull unsigned ll

void reader(int *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(ll *x){int k,m=0;*x=0;for(;;){mygc(k);if(k=='-'){m=1;break;}if('0'<=k&&k<='9'){*x=k-'0';break;}}for(;;){mygc(k);if(k<'0'||k>'9')break;*x=(*x)*10+k-'0';}if(m)(*x)=-(*x);}
void reader(double *x){scanf("%lf",x);}
int reader(char c[]){int i,s=0;for(;;){mygc(i);if(i!=' '&&i!='\n'&&i!='\r'&&i!='\t'&&i!=EOF) break;}c[s++]=i;for(;;){mygc(i);if(i==' '||i=='\n'||i=='\r'||i=='\t'||i==EOF) break;c[s++]=i;}c[s]='\0';return s;}
template <class T, class S> void reader(T *x, S *y){reader(x);reader(y);}
template <class T, class S, class U> void reader(T *x, S *y, U *z){reader(x);reader(y);reader(z);}
template <class T, class S, class U, class V> void reader(T *x, S *y, U *z, V *w){reader(x);reader(y);reader(z);reader(w);}

void writer(int x, char c){int s=0,m=0;char f[10];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);}
void writer(ll x, char c){int s=0,m=0;char f[20];if(x<0)m=1,x=-x;while(x)f[s++]=x%10,x/=10;if(!s)f[s++]=0;if(m)mypc('-');while(s--)mypc(f[s]+'0');mypc(c);}
void writer(double x, char c){printf("%.15f",x);mypc(c);}
void writer(const char c[]){int i;for(i=0;c[i]!='\0';i++)mypc(c[i]);}
void writer(const char x[], char c){int i;for(i=0;x[i]!='\0';i++)mypc(x[i]);mypc(c);}
template<class T> void writerLn(T x){writer(x,'\n');}
template<class T, class S> void writerLn(T x, S y){writer(x,' ');writer(y,'\n');}
template<class T, class S, class U> void writerLn(T x, S y, U z){writer(x,' ');writer(y,' ');writer(z,'\n');}
template<class T> void writerArr(T x[], int n){int i;if(!n){mypc('\n');return;}rep(i,n-1)writer(x[i],' ');writer(x[n-1],'\n');}

char memarr[17000000]; void *mem = memarr;
#define MD 1000000007

template<class T> void sort(int N, T a[], void *mem = NULL){sort(a,a+N);}
template<class T1, class T2> void sort(int N, T1 a[], T2 b[], void *mem){int i;pair<T1,T2> *r=(pair<T1, T2>*)mem;rep(i,N)r[i].first=a[i],r[i].second=b[i];sort(r,r+N);rep(i,N)a[i]=r[i].first,b[i]=r[i].second;}
template<class T1, class T2, class T3> void sort(int N, T1 a[], T2 b[], T3 c[], void *mem){int i;pair<T1,pair<T2,T3> > *r=(pair<T1,pair<T2,T3> >*)mem;rep(i,N)r[i].first=a[i],r[i].second.first=b[i],r[i].second.second=c[i];sort(r,r+N);rep(i,N)a[i]=r[i].first,b[i]=r[i].second.first,c[i]=r[i].second.second;}
template<class T1, class T2, class T3, class T4> void sort(int N, T1 a[], T2 b[], T3 c[], T4 d[], void *mem){int i;pair<pair<T1,T2>,pair<T3,T4> > *r=(pair<pair<T1,T2>,pair<T3,T4> >*)mem;rep(i,N)r[i].first.first=a[i],r[i].first.second=b[i],r[i].second.first=c[i],r[i].second.second=d[i];sort(r,r+N);rep(i,N)a[i]=r[i].first.first,b[i]=r[i].first.second,c[i]=r[i].second.first,d[i]=r[i].second.second;}


int N, A[120], ind[120];
ll X, rem;

int dp[120][100000];
int res[120];

int main(){
  int i, j, k;
  int fix, mask;

  reader(&N,&X);
  rep(i,N) reader(A+i);

  rep(i,N) ind[i] = i;
  sort(N, ind, A, mem);

  rem = 0;
  rep(i,N) rem += A[i];
  if(rem < X){ writerLn("No"); return 0; }

  fix = min(N, 16);
  rep(mask,1<<fix){
    rem = X;
    rep(i,fix) if(mask&1<<i) rem -= A[N-1-i];

    if(rem >= 100000) continue;

    rep(i,N+1) rep(j,rem+1) dp[i][j] = 0;
    dp[0][0] = 1;
    rep(i,N) rep(j,rem+1) if(dp[i][j]){
      dp[i+1][j] = 1;
      if(j+A[i] <= rem) dp[i+1][j+A[i]] = 1;
    }

    if(dp[N][rem]){
      rep(k,N) res[k] = 0;
      rep(i,fix) if(mask&1<<i) res[ind[N-1-i]] = 1;
      i = N; j = rem;

      while(j){
        if(j>=A[i-1] && dp[i-1][j-A[i-1]]){
          res[ind[i-1]] = 1;
          j -= A[i-1];
        }
        i--;
      }

      rep(k,N) mypc(res[k]?'o':'x');
      mypc('\n');
      return 0;
    }
  }

  writerLn("No");

  return 0;
}
0