結果
問題 | No.10 +か×か |
ユーザー | ojisan_IT |
提出日時 | 2017-09-25 23:56:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
ソースコード
#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; }