結果

問題 No.10 +か×か
ユーザー ojisan_IT
提出日時 2017-09-25 23:56:28
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 1,179 bytes
コンパイル時間 996 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 13:24:12
合計ジャッジ時間 1,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other RE * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<cmath>
#include<climits>
#include<algorithm>
#include<queue>
#include<tuple>

using namespace std;  
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
#define rep(i,n) for(ll i=0;i<(n);i++)  
#define pii pair<int,int>
#define piii pair<int,pii>
#define mp make_pair
#define pb push_back  
#define ALL(a) (a).begin(),(a).end()
#define FST first
#define SEC second  
const int INF = (INT_MAX/2);
const ll LLINF = (LLONG_MAX/2);
const double eps = 1e-5;
const double PI = M_PI;
#define DEB cerr<<"!"<<endl
#define SHOW(a,b) cerr<<(a)<<" "<<(b)<<endl
#define SHOWARRAY(ar,i,j) REP(a,i)REP(b,j)cerr<<ar[a][b]<<((b==j-1)?((a==i-1)?("\n\n"):("\n")):(" "))

int n;
int t;
vi a;

bool memo[51][100001] ={};

void dfs(int now,string ans){
  int s = ans.size();
  if(memo[s][now]) return;
  if(s == n-1 && now == t){cout << ans << endl; exit(1);}
  if(s == n-1) return;
  memo[s][now] = 1;
  //SHOW(now,n);
  if(now+a[s+1] <= t)
    dfs(now+a[s+1],ans + "+");
  if(now*a[s+1] <= t)
    dfs(now*a[s+1],ans + "*");
  return;
}

int main(){
  cin >> n >> t;
  rep(i,n){int in; cin >> in; a.pb(in);}
  dfs(a[0],"");
  return 0;
}
0