結果
問題 | No.10 +か×か |
ユーザー | paruki |
提出日時 | 2016-09-30 01:33:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 624 ms / 5,000 ms |
コード長 | 921 bytes |
コンパイル時間 | 1,641 ms |
コンパイル使用メモリ | 172,264 KB |
実行使用メモリ | 307,092 KB |
最終ジャッジ日時 | 2024-12-14 15:37:39 |
合計ジャッジ時間 | 4,415 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
162,960 KB |
testcase_01 | AC | 58 ms
162,824 KB |
testcase_02 | AC | 59 ms
162,796 KB |
testcase_03 | AC | 624 ms
307,092 KB |
testcase_04 | AC | 101 ms
164,188 KB |
testcase_05 | AC | 59 ms
162,816 KB |
testcase_06 | AC | 619 ms
305,684 KB |
testcase_07 | AC | 265 ms
207,656 KB |
testcase_08 | AC | 99 ms
169,740 KB |
testcase_09 | AC | 99 ms
166,524 KB |
testcase_10 | AC | 60 ms
162,808 KB |
testcase_11 | AC | 59 ms
162,864 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)<<endl #define smax(x,y) (x)=max((x),(y)) #define smin(x,y) (x)=min((x),(y)) #define MEM(x,y) memset((x),(y),sizeof (x)) #define sz(x) (int)(x).size() typedef long long ll; typedef pair<int, int> pii; typedef vector<int> vi; typedef vector<ll> vll; string dp[51][100001], MI = "!"; int main(){ int N, T; cin >> N >> T; vi A(N); rep(i, N)cin >> A[i]; rep(i, N + 1)rep(j, T + 1)dp[i][j] = MI; dp[1][A[0]] = ""; FOR(i, 1, N)rep(j, T + 1)if(dp[i][j]!=MI){ int x = j + A[i], y = j*A[i]; if(x <= T)smax(dp[i + 1][x], dp[i][j] + '+'); if(y <= T)smax(dp[i + 1][y], dp[i][j] + '*'); } cout << dp[N][T] << endl; }