結果
問題 | No.393 2本の竹 |
ユーザー | kurenai3110 |
提出日時 | 2016-07-13 21:25:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,122 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 66,860 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-15 01:08:56 |
合計ジャッジ時間 | 1,739 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int n1, n2; vector<int> a; vector<int> DP; int n0,sa,n_max; bool solve(int cnt, int sum,int first); int main() { int d,m; cin >> d; for (int i = 0; i < d; i++) { cin >> n1 >> n2; cin >> m; a.resize(m); for (int j = 0; j < m; j++) { cin >> a[j]; } sort(a.begin(), a.end()); n0 = n1 + n2; n_max = max(n1, n2); int a_sum=0, ans=0; for (int j = 0; j < a.size(); j++) { if (a_sum + a[j] <= n0) { a_sum += a[j]; ans = j + 1; } else { a.erase(a.begin() + j); j--; } } sa = n0 - a_sum; reverse(a.begin(), a.end()); DP.assign(100010, 100); cout << ans - !solve(0, 0,0) << endl; } return 0; } bool solve(int cnt,int sum,int first) { for (int i = first; i < a.size(); i++) { int tmp; tmp = sum + a[i]; cout << tmp << endl; if ((tmp >= n1 - sa&&tmp <= n1) || (tmp >= n2 - sa&&tmp <= n2)) return true; else if (tmp > n_max) continue; if (DP[tmp] < cnt) continue; else { DP[tmp] = cnt; if (solve(cnt+1, tmp,cnt+1+i-first)) return true; } } return false; }