結果

問題 No.10 +か×か
ユーザー kk
提出日時 2014-10-30 10:34:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 5,000 ms
コード長 964 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 72,088 KB
実行使用メモリ 23,580 KB
最終ジャッジ日時 2024-05-08 11:40:45
合計ジャッジ時間 1,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
23,276 KB
testcase_01 AC 7 ms
23,368 KB
testcase_02 AC 7 ms
23,200 KB
testcase_03 AC 11 ms
23,416 KB
testcase_04 AC 7 ms
23,476 KB
testcase_05 AC 7 ms
23,236 KB
testcase_06 AC 13 ms
23,444 KB
testcase_07 AC 9 ms
23,488 KB
testcase_08 AC 8 ms
23,340 KB
testcase_09 AC 8 ms
23,580 KB
testcase_10 AC 7 ms
23,288 KB
testcase_11 AC 8 ms
23,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:45:9: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   45 |   scanf ("%d", &n);
      |   ~~~~~~^~~~~~~~~~
main.cpp:46:9: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   46 |   scanf ("%d", &total);
      |   ~~~~~~^~~~~~~~~~~~~~
main.cpp:47:36: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   47 |   for (int i = 0; i < n; i++) scanf("%d", &a[i]);
      |                               ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <functional>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cctype>
#include <string>
#include <cstring>
#include <map>

using namespace std;

int memo[51][100020];

int total;
int n;
int a[51];
char ans[50];
bool rec(int i, int val) {
  if (memo[i][val] != -1) return memo[i][val];
  if (i == n-1) {
    return (val == total);
  }

  if (val+a[i+1] <= total && rec(i+1, val+a[i+1])) {
    ans[i] = '+';
    return memo[i][val]=true;
  }
  if (val*a[i+1] <= total && rec(i+1, val*a[i+1])) {
    ans[i] = '*';
    return memo[i][val]=true;
  }

  return memo[i][val]=false;
}

int main() {
  memset(memo, -1, sizeof(memo));
  scanf ("%d", &n);
  scanf ("%d", &total);
  for (int i = 0; i < n; i++) scanf("%d", &a[i]);

  rec(0, a[0]);
  printf ("%s\n", ans);
}
0