結果

問題 No.10 +か×か
ユーザー cureskolcureskol
提出日時 2020-03-27 10:34:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 569 bytes
コンパイル時間 1,675 ms
コンパイル使用メモリ 170,484 KB
実行使用メモリ 28,060 KB
最終ジャッジ日時 2024-06-10 16:07:18
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
28,020 KB
testcase_01 AC 12 ms
28,020 KB
testcase_02 AC 12 ms
28,060 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 159 ms
27,940 KB
testcase_06 RE -
testcase_07 AC 296 ms
28,028 KB
testcase_08 RE -
testcase_09 AC 101 ms
28,004 KB
testcase_10 AC 22 ms
27,924 KB
testcase_11 AC 20 ms
28,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int dp[51][123456],n,s;
vector<int> v;
bool can(int a){
  memset(dp,0,sizeof(dp));
  v[a+1]+=v[a];
  dp[a+2][v[a+1]]++;
  for(int i=a+2;i<n;i++){
    for(int j=s;j>=0;j--){
      dp[i+1][j+v[i]]+=dp[i][j];
      dp[i+1][j*v[i]]+=dp[i][j];
    }
  }
  v[a+1]-=v[a];
  return dp[n][s];
}


signed main(){
  cin>>n>>s;
  v.resize(n);
  for(int i=0;i<n;i++)cin>>v[i];
  for(int i=0;i<n-1;i++){
    if(can(i)){
      cout<<'+';
      v[i+1]+=v[i];
    }
    else{
      cout<<'*';
      v[i+1]*=v[i];
    }
  }
  cout<<endl;
}
0