結果
問題 | No.10 +か×か |
ユーザー | siman |
提出日時 | 2022-01-05 02:43:13 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 12 ms / 5,000 ms |
コード長 | 1,150 bytes |
コンパイル時間 | 1,447 ms |
コンパイル使用メモリ | 143,632 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-10-15 05:51:20 |
合計ジャッジ時間 | 2,191 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,400 KB |
testcase_01 | AC | 5 ms
8,320 KB |
testcase_02 | AC | 3 ms
8,308 KB |
testcase_03 | AC | 8 ms
8,424 KB |
testcase_04 | AC | 5 ms
8,320 KB |
testcase_05 | AC | 4 ms
8,356 KB |
testcase_06 | AC | 12 ms
8,448 KB |
testcase_07 | AC | 7 ms
8,408 KB |
testcase_08 | AC | 5 ms
8,400 KB |
testcase_09 | AC | 5 ms
8,392 KB |
testcase_10 | AC | 4 ms
8,320 KB |
testcase_11 | AC | 5 ms
8,448 KB |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; bool checked[51][100010]; int N; int T; int A[51]; vector<char> ans; void dfs(int i, int sum, vector<char> &operators) { // fprintf(stderr, "i: %d, sum: %d, %d\n", i, sum, (int) operators.size()); if (sum > T) return; if (checked[i][sum]) return; if (ans.size() > 0) return; if (i == N) { if (sum == T) { assert(operators.size() == N - 1); ans = operators; } return; } operators.push_back('+'); dfs(i + 1, sum + A[i], operators); operators.pop_back(); operators.push_back('*'); dfs(i + 1, sum * A[i], operators); operators.pop_back(); checked[i][sum] = true; } int main() { cin >> N; cin >> T; for (int i = 0; i < N; ++i) { cin >> A[i]; } memset(checked, false, sizeof(checked)); vector<char> operators; dfs(1, A[0], operators); string res = ""; for (char op : ans) { res += op; } cout << res << endl; return 0; }