結果

問題 No.10 +か×か
ユーザー pyraninepyranine
提出日時 2020-12-24 16:47:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 5,000 ms
コード長 1,820 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 164,500 KB
実行使用メモリ 8,508 KB
最終ジャッジ日時 2023-08-21 06:32:33
合計ジャッジ時間 2,140 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,224 KB
testcase_01 AC 4 ms
8,204 KB
testcase_02 AC 3 ms
8,508 KB
testcase_03 AC 8 ms
8,336 KB
testcase_04 AC 8 ms
8,320 KB
testcase_05 AC 7 ms
8,400 KB
testcase_06 AC 7 ms
8,332 KB
testcase_07 AC 8 ms
8,328 KB
testcase_08 AC 6 ms
8,376 KB
testcase_09 AC 5 ms
8,384 KB
testcase_10 AC 4 ms
8,328 KB
testcase_11 AC 4 ms
8,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0