結果
問題 | No.10 +か×か |
ユーザー | pocarist |
提出日時 | 2015-09-19 15:03:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,051 bytes |
コンパイル時間 | 821 ms |
コンパイル使用メモリ | 80,552 KB |
実行使用メモリ | 43,136 KB |
最終ジャッジ日時 | 2024-07-19 07:57:00 |
合計ジャッジ時間 | 1,489 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 45 ms
43,008 KB |
testcase_04 | AC | 22 ms
29,440 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 47 ms
43,136 KB |
testcase_07 | WA | - |
testcase_08 | AC | 8 ms
10,880 KB |
testcase_09 | AC | 13 ms
17,536 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
ソースコード
//http://yukicoder.me/problems/29 #include <iostream> #include <queue> #include <vector> #include <string> #include <tuple> #include <algorithm> #include <cmath> #include <set> #include <map> #include <cstdint> #include <limits> using namespace std; int main() { int N; cin >> N; int Total; cin >> Total; vector<int> A(N); for (int i = 0; i < N; i++) { cin >> A[i]; } vector<vector<int64_t>> dp(N, vector<int64_t>(Total + 1, numeric_limits<int64_t>::max())); dp[0][A[0]] = 0; for (int i = 1; i < N; i++) { for (int j = 0; j < Total; j++) { if (dp[i-1][j] != numeric_limits<int64_t>::max()) { int n = j + A[i]; if (n <= Total) { auto v = dp[i - 1][j]; if (dp[i][n] > v) dp[i][n] = v; } int m = j * A[i]; if (m <= Total) { auto v = dp[i - 1][j] | (1LL << (N - i)); if (dp[i][m] > v) dp[i][m] = v; } } } } string ans; for (int i = 0; i < N-1; i++) { if (dp[N - 1][Total] & (1LL << (N-i-1))) ans += "*"; else ans += "+"; } cout << ans << endl; return 0; }