結果

問題 No.10 +か×か
ユーザー なおなお
提出日時 2014-10-05 18:19:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 807 ms / 5,000 ms
コード長 1,137 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 57,796 KB
実行使用メモリ 468,224 KB
最終ジャッジ日時 2024-12-14 15:25:08
合計ジャッジ時間 5,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 261 ms
319,104 KB
testcase_01 AC 255 ms
319,104 KB
testcase_02 AC 258 ms
318,988 KB
testcase_03 AC 807 ms
468,224 KB
testcase_04 AC 263 ms
323,788 KB
testcase_05 AC 258 ms
319,232 KB
testcase_06 AC 805 ms
466,812 KB
testcase_07 AC 442 ms
367,272 KB
testcase_08 AC 289 ms
327,040 KB
testcase_09 AC 288 ms
324,608 KB
testcase_10 AC 259 ms
319,216 KB
testcase_11 AC 256 ms
318,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;

#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))

bool dp1[101][100010];
string dp2[101][100010];
int main(){
    int N, total, A;
    cin >> N >> total;

    REP(i,N+1) REP(j,total+1) dp1[i][j] = false;
    cin >> A;
    dp1[0][A] = true;

    REP(i,N-1){
        cin >> A;
        for(int j = 0; j <= total; j++){
            if(!dp1[i][j]) continue;
            int k = j + A;
            if(k <= total){
                string ks = dp2[i][j] + "0";
                dp1[i+1][k] = true;
                if(dp2[i+1][k] == "" || dp2[i+1][k] > ks) dp2[i+1][k] = ks;
            }
            int l = j * A;
            if(l <= total){
                string ls = dp2[i][j] + "1";
                dp1[i+1][l] = true;
                if(dp2[i+1][l] == "" || dp2[i+1][l] > ls) dp2[i+1][l] = ls;
            }
        }
    }
    string res = dp2[N-1][total];
    if(res != ""){
        REP(i,res.size()){
            if(res[i] == '0') res[i] = '+';
            if(res[i] == '1') res[i] = '*';
        }
        cout << res << endl;
    }
    return 0;
}
0