結果
問題 | No.393 2本の竹 |
ユーザー | 🍡yurahuna |
提出日時 | 2016-07-13 09:54:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,150 bytes |
コンパイル時間 | 1,676 ms |
コンパイル使用メモリ | 178,464 KB |
実行使用メモリ | 51,488 KB |
最終ジャッジ日時 | 2024-10-15 01:08:48 |
合計ジャッジ時間 | 4,294 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 16 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 5 ms
5,248 KB |
testcase_03 | AC | 9 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 11 ms
5,248 KB |
testcase_08 | AC | 27 ms
5,248 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long // <-----!!!!!!!!!!!!!!!!!!! #define rep(i,n) for (int i=0;i<(n);i++) #define rep2(i,a,b) for (int i=(a);i<(b);i++) #define rrep(i,n) for (int i=(n)-1;i>=0;i--) #define rrep2(i,a,b) for (int i=(b)-1;i>=(a);i--) #define all(a) (a).begin(),(a).end() typedef long long ll; typedef pair<int, int> Pii; typedef tuple<int, int, int> TUPLE; typedef vector<int> V; typedef vector<V> VV; typedef vector<VV> VVV; typedef vector<vector<int>> Graph; const int inf = 1e9; const int mod = 1e9 + 7; int m; V a; set<Pii> st; int dfs(int i, int x, int y) { if (st.count(Pii(i, x))) return i; if (x < 0 || y < 0) return i - 1; st.insert(Pii(i, x)); return max(dfs(i + 1, x - a[i], y), dfs(i + 1, x, y - a[i])); } signed main() { std::ios::sync_with_stdio(false); std::cin.tie(0); int d; cin >> d; rep(_, d) { int n1, n2; cin >> n1 >> n2; cin >> m; a.resize(m); rep(i, m) cin >> a[i]; sort(all(a)); a.emplace_back(inf); m++; st.clear(); cout << dfs(0, n1, n2) << endl; } }