結果
問題 | No.10 +か×か |
ユーザー | IL_msta |
提出日時 | 2015-08-19 00:13:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,429 bytes |
コンパイル時間 | 607 ms |
コンパイル使用メモリ | 86,980 KB |
実行使用メモリ | 43,280 KB |
最終ジャッジ日時 | 2024-07-18 10:16:43 |
合計ジャッジ時間 | 1,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 12 ms
43,164 KB |
testcase_01 | AC | 11 ms
43,148 KB |
testcase_02 | AC | 12 ms
43,200 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 22 ms
43,160 KB |
testcase_09 | AC | 19 ms
43,052 KB |
testcase_10 | AC | 13 ms
43,216 KB |
testcase_11 | AC | 23 ms
43,152 KB |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <sstream> #include <algorithm> #include <cmath> #include <string> //#include <array> #include <list> #include <queue> #include <vector> #include <complex> #include <set> #include <map> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define PII pair<int,int> ///////// typedef long long LL; typedef long double LD; ///////// using namespace::std; ///////// int N; int total; int A[50]; int dpmax = 100001; LL dp[100001][51]; int main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;// //cout << setprecision(16);// cin>>N>>total; rep(i,N){//[0-N) 0ori N個 cin>>A[i]; } const LL INF = (LL)1<<55; rep(i,100001){ rep(j,51){ dp[i][j] = INF; } } dp[ A[0]+A[1] ][1] = 0; dp[ A[0]*A[1] ][1] = (LL)1<<(N-2-0); LL temp; for(int i=2;i<N;++i){ for(int j=dpmax-1;j>=1;--j){ if( dp[j][i-1] < INF && 0 <= dp[j][i-1] ){ temp = j + A[i]; if( temp <= total){ dp[ temp ][i] = min( dp[ temp ][i] , dp[j][i-1] ); } temp = j * A[i]; if( temp <= total ){ dp[ temp ][i] = min( dp[ temp ][i] , dp[j][i-1] + (LL)( 1<<(N-1-i) ) ); } } } } LL ans = dp[total][N-1]; rep(i,N-1){ if( ans & (LL)(1<<(N-2-i)) ){ cout << "*"; }else{ cout << "+"; } }cout << endl; return 0; }