結果
問題 | No.10 +か×か |
ユーザー | sigma425 |
提出日時 | 2015-04-25 10:58:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 39 ms / 5,000 ms |
コード長 | 777 bytes |
コンパイル時間 | 1,508 ms |
コンパイル使用メモリ | 160,128 KB |
実行使用メモリ | 43,256 KB |
最終ジャッジ日時 | 2024-12-14 15:29:33 |
合計ジャッジ時間 | 2,294 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 37 ms
43,216 KB |
testcase_04 | AC | 23 ms
29,696 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 39 ms
43,256 KB |
testcase_07 | AC | 24 ms
29,824 KB |
testcase_08 | AC | 10 ms
11,392 KB |
testcase_09 | AC | 12 ms
18,048 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) #define rep1(i,n) for(int i=1;i<=(int)(n);i++) #define all(c) c.begin(),c.end() #define pb push_back #define fs first #define sc second #define show(x) cout << #x << " = " << x << endl #define chmin(x,y) x=min(x,y) #define chmax(x,y) x=max(x,y) using namespace std; typedef long long ll; ll dp[51][100001],inf=1e18; int main(){ int N,T; cin>>N>>T; rep(i,N+1) rep(j,T+1) dp[i][j]=inf; int a; cin>>a; dp[0][a]=0; rep(i,N-1){ cin>>a; rep(j,T+1){ if(dp[i][j]==inf) continue; if(j+a<=T) chmin(dp[i+1][j+a],dp[i][j]*2); if(j*a<=T) chmin(dp[i+1][j*a],dp[i][j]*2+1); } } ll v=dp[N-1][T]; string ans; rep(i,N-1){ ans+=(v%2 ? '*' : '+'); v/=2; } reverse(all(ans)); cout<<ans<<endl; }