結果
問題 | No.10 +か×か |
ユーザー | Irmystp |
提出日時 | 2014-12-03 02:24:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 909 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 35,044 KB |
実行使用メモリ | 6,272 KB |
最終ジャッジ日時 | 2024-06-11 14:39:48 |
合計ジャッジ時間 | 1,111 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 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:24:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 24 | scanf("%d%d", &N, &T); | ~~~~~^~~~~~~~~~~~~~~~ main.cpp:26:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%d", a+i); | ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio> #include <algorithm> #include <cassert> using namespace std; int N, T; int a[50]; char dp[51][100001]; bool dfs(int m, int t){ if(m == 0) return true; if(t > a[m] && dp[m - 1][t - a[m]] && dfs(m - 1, t - a[m])){ putchar('+'); return true; } if(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]; } } assert(dp[N-1][T]!=0); assert(dfs(N-1, T)); puts(""); return 0; }