結果

問題 No.10 +か×か
ユーザー IrmystpIrmystp
提出日時 2014-12-03 02:14:04
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 863 bytes
コンパイル時間 374 ms
コンパイル使用メモリ 34,904 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-06-11 07:59:46
合計ジャッジ時間 1,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |     scanf("%d%d", &N, &T);
      |     ~~~~~^~~~~~~~~~~~~~~~
main.cpp:25:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   25 |         scanf("%d", a+i);
      |         ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
using namespace std;

int N, T;
int a[50];
char dp[51][100001];

bool dfs(int m, int t){
    if(m == 0) return t == a[m];
    if(t > a[m] && dp[m - 1][t - a[m]] && dfs(m - 1, t - a[m])){
        putchar('+');
        return true;
    }
    if(t && t % a[m] == 0 && dp[m - 1][t / a[m]] && dfs(m - 1, t / a[m])){
        putchar('*');
        return true;
    }
    return false;
}

int main(){
    scanf("%d%d", &N, &T);
    for(int i = 0; i < N; i++){
        scanf("%d", a+i);
        fill(dp[i], dp[i]+T+1, 0);
    }
    dp[0][a[0]] = 1;
    for(int i = 1; i < N; i++){
        for(int j = 1; j <= T; j++){
            if(j*a[i] <= T) dp[i][j*a[i]] += dp[i-1][j];
            if(j+a[i] <= T) dp[i][j+a[i]] += dp[i-1][j];
        }
    }
    dfs(N-1, T);
    puts("");
    return 0;
}
0