結果

問題 No.10 +か×か
ユーザー なおなお
提出日時 2014-10-11 06:00:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 14 ms / 5,000 ms
コード長 634 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 55,932 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 11:40:35
合計ジャッジ時間 988 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))

int N, total, A[51];
bool memo[51][100100];
string s;

void dfs(int i, int num){
    if(num > total) return;
    if(memo[i][num]) return;
    if(i == N){
        if(num == total){ cout << s << endl; exit(0); }
        return;
    }
    s.push_back('+'); dfs(i+1, num + A[i]); s.pop_back();
    s.push_back('*'); dfs(i+1, num * A[i]); s.pop_back();
    memo[i][num] = true;
}

int main(){
    cin >> N >> total;
    REP(i,N) cin >> A[i];
    dfs(1,A[0]);
    return 0;
}
0