結果
| 問題 | No.3696 Betting Machine |
| コンテスト | |
| ユーザー |
kwm_t
|
| 提出日時 | 2026-09-09 22:20:50 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 37 ms / 1,500 ms |
| + 299µs | |
| コード長 | 1,694 bytes |
| 記録 | |
| コンパイル時間 | 2,710 ms |
| コンパイル使用メモリ | 346,604 KB |
| 実行使用メモリ | 13,312 KB |
| 最終ジャッジ日時 | 2026-09-09 22:21:06 |
| 合計ジャッジ時間 | 5,048 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
// using namespace atcoder;
// using mint = modint1000000007;
// const int mod = 1000000007;
// using mint = modint998244353;
// const int mod = 998244353;
// const int INF = 1e9;
// const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i, l, r) for (int i = (l); i < (r); ++i)
#define rrep(i, n) for (int i = (n)-1; i >= 0; --i)
#define rrep2(i, l, r) for (int i = (r)-1; i >= (l); --i)
#define all(x) (x).begin(), (x).end()
#define allR(x) (x).rbegin(), (x).rend()
#define P pair<int, int>
template<typename A, typename B> inline bool chmax(A& a, const B& b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A& a, const B& b) { if (a > b) { a = b; return true; } return false; }
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int s, t, n; cin >> s >> t >> n;
vector<int>p(3), a(3), b(3);
rep(i, 3)cin >> p[i] >> a[i] >> b[i];
vector dp(n + 1, vector<long long>(t + 1));
vector dp2(n + 1, vector<vector<int>>(t + 1));
dp[n][t] = 1;
rrep(i, n)dp[i][t] = dp[i + 1][t] * 100;
rrep(i, n) {
int ni = i + 1;
rep2(j, 1, t) {
rep2(x, 1, j + 1) {
long long tmp = 0;
rep(y, 3) {
long long nj = j - x + (a[y] * x / b[y]);
chmin(nj, t);
chmax(nj, 0);
tmp += dp[ni][nj] * p[y];
}
if (chmax(dp[i][j], tmp)) dp2[i][j].clear();
if (dp[i][j] == tmp)dp2[i][j].push_back(x);
}
}
}
long long val = dp[0][s];
rep(i, n - 1)val /= 100;
cout << val << endl;
cout << dp2[0][s].size() << endl;
for (auto e : dp2[0][s]) cout << e << " ";
cout << endl;
return 0;
}
kwm_t