結果
問題 |
No.10 +か×か
|
ユーザー |
|
提出日時 | 2020-12-24 16:47:36 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 8 ms / 5,000 ms |
コード長 | 1,820 bytes |
コンパイル時間 | 1,518 ms |
コンパイル使用メモリ | 166,396 KB |
実行使用メモリ | 8,432 KB |
最終ジャッジ日時 | 2024-12-14 15:46:53 |
合計ジャッジ時間 | 2,165 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int32 = int_fast32_t; using Word32 = uint_fast32_t; using Int64 = int_fast64_t; using Word64 = uint_fast64_t; using Int128 = __int128_t; using Word128 = __uint128_t; using Int = int_fast64_t; using Word = uint_fast64_t; using F32 = float; using F64 = double; using F80 = long double; using VInt = vector<Int>; using VVI = vector<VInt>; using VWord = vector<Word>; using VVW = vector<VWord>; using VF32 = vector<F32>; using VF64 = vector<F64>; using VF80 = vector<F80>; using VS = vector<string>; using VVS = vector<VS>; using VB = vector<bool>; using VVB = vector<VB>; using PII = pair<Int,Int>; using PWW = pair<Word,Word>; using VPII = vector<PII>; using VPWW = vector<PWW>; using PQ_PII = priority_queue<PII, VPII, greater<PII>>; #define SZ(x) ((Int)(x).size()) #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()) #define rep(i,n) for(Int i=0, i##_len=(n); i<i##_len; ++i) #define reps(i,n) for(Int i=0, i##_len=(n); i<=i##_len; ++i) #define Range(i,a,b) for(Int i=(a); i<=(Int)(b); i++) #define ALL(x) (x).begin(),(x).end() #define RALL(x) (x).rbegin(),(x).rend() #define pb push_back #define eb emplace_back #define mp make_pair int main() { ios_base::sync_with_stdio(0); cin.tie(0); Int n; cin >> n; Int total; cin >> total; Int a[51]; for (Int i = n - 1; i >= 0; i--) cin >> a[i]; bool dp[51][100001] = {}; dp[0][total] = true; rep(i,n)rep(j,100001) { if (!dp[i][j]) continue; if (j - a[i] >= 0) dp[i + 1][j - a[i]] = true; if (j % a[i] == 0) dp[i + 1][j / a[i]] = true; } Int val = a[n - 1], pos = n - 2; while (pos >= 0) { if (dp[pos][val + a[pos]]) { val += a[pos]; cout << '+'; } else { val *= a[pos]; cout << '*'; } pos--; } cout << '\n'; return 0; }