結果
問題 | No.10 +か×か |
ユーザー | zimpha |
提出日時 | 2017-12-07 02:13:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 284 ms |
コンパイル使用メモリ | 33,664 KB |
実行使用メモリ | 42,928 KB |
最終ジャッジ日時 | 2024-05-06 17:32:13 |
合計ジャッジ時間 | 1,326 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
42,752 KB |
testcase_01 | AC | 13 ms
42,752 KB |
testcase_02 | AC | 13 ms
42,752 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 17 ms
42,880 KB |
testcase_09 | AC | 17 ms
42,752 KB |
testcase_10 | AC | 13 ms
42,800 KB |
testcase_11 | AC | 12 ms
42,744 KB |
ソースコード
#include <cstdio> #include <cstring> using int64 = long long; const int N = 51, S = 1e5 + 10; int64 dp[N][S]; int a[N]; int main() { memset(dp, -1, sizeof(dp)); int n, m; scanf("%d%d", &n, &m); for (int i = 0; i < n; ++i) { scanf("%d", &a[i]); } auto update = [&](int64 &x, int64 y) { if (x == -1 || x > y) x = y; }; dp[0][0] = 0; for (int i = 0; i < n; ++i) { for (int j = 0; j <= m; ++j) if (dp[i][j] != -1) { if (j + a[i] <= m) update(dp[i + 1][j + a[i]], dp[i][j]); if (j * a[i] <= m) update(dp[i + 1][j * a[i]], dp[i][j] | (1 << (n - i))); } } for (int i = n - 1; i > 0; --i) { if (dp[n][m] >> i & 1) putchar('*'); else putchar('+'); } puts(""); return 0; }