結果
問題 | No.214 素数サイコロと合成数サイコロ (3-Medium) |
ユーザー | Yang33 |
提出日時 | 2018-08-22 18:10:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 430 ms / 3,000 ms |
コード長 | 3,216 bytes |
コンパイル時間 | 1,959 ms |
コンパイル使用メモリ | 179,336 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 18:32:26 |
合計ジャッジ時間 | 3,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 316 ms
5,248 KB |
testcase_01 | AC | 389 ms
5,248 KB |
testcase_02 | AC | 430 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using VS = vector<string>; using LL = long long; using VI = vector<int>; using VVI = vector<VI>; using PII = pair<int, int>; using PLL = pair<LL, LL>; using VL = vector<LL>; using VVL = vector<VL>; #define ALL(a) begin((a)),end((a)) #define RALL(a) (a).rbegin(), (a).rend() #define SZ(a) (long long)((a).size()) #define SORT(c) sort(ALL((c))) #define RSORT(c) sort(RALL((c))) #define UNIQ(c) (c).erase(unique(ALL((c))), end((c))) #define FOR(i, s, e) for (int(i) = (s); (i) < (e); (i)++) #define FORR(i, s, e) for (int(i) = (s); (i) > (e); (i)--) #define debug(x) cerr << #x << ": " << x << endl const int INF = 1e9; const LL LINF = 1e16; const int MOD = 1000000007; const double PI = acos(-1.0); int DX[8] = { 0, 0, 1, -1, 1, 1, -1, -1 }; int DY[8] = { 1, -1, 0, 0, 1, -1, 1, -1 }; /* ----- 2018/08/21 Problem: yukicoder 214 / Link: http://yukicoder.me/problems/no/214 ----- */ /* ------問題------ -----問題ここまで----- */ /* -----解説等----- http://yosupo.hatenablog.com/entry/2015/03/27/025132 https://twitter.com/search?f=tweets&vertical=default&q=%E3%81%8D%E3%81%9F%E3%81%BE%E3%81%95%E6%B3%95&src=typd https://www.slideshare.net/kmjp/yukicoder-no194?ref=http://kmjp.hatenablog.jp/entry/2015/04/27/0900 テストケース激弱そう ----解説ここまで---- */ struct Kitamasa { VL C; Kitamasa(VL& p):C(p) {} VL mul(VL& u, VL& v) { int S = u.size(); VL ret(2 * S - 1, 0); FOR(i, 0, S) { FOR(j, 0, S) { ret[i + j] += u[i] * v[j]; ret[i + j] %= MOD; } } for (int i = 2 * S - 2; i >= S; i--) { FOR(j, 0, S) { ret[i - 1 - j] += ret[i] * C[j]; ret[i - 1 - j] %= MOD; } } ret.resize(S); return ret; } VL calcA_N(LL N) { LL EXP = N - 1; int S = SZ(C); VL a(S, 0), b(S, 0); a[0] = 1; b[1] = 1; while (EXP > 0) { if (EXP&1) { a = mul(a, b); } b = mul(b, b); EXP /= 2; } return a; } }; int solve(LL N, LL P, LL C) { VI pdice = { 2,3,5,7,11,13 }; VI cdice = { 4,6,8,9,10,12 }; auto makeDP = [](int n, const VI&dice) { VVI dp(n + 1, VI(dice.back() * n + 1, 0)); dp[0][0] = 1; for (int d : dice) { FOR(i, 0, n) { FOR(x, 0, dice.back() * (i + 1) + 1 - d) { (dp[i + 1][x + d] += dp[i][x]) %= MOD; } } } return dp.back(); }; VI Pdp = makeDP(P, pdice); VI Cdp = makeDP(C, cdice); LL sz = P * pdice.back() + C * cdice.back(); VL cmtable(sz + 1, 0); FOR(i, 0, P*pdice.back() + 1) { FOR(j, 0, C*cdice.back() + 1) { (cmtable[i + j] += Pdp[i] * Cdp[j]) %= MOD; } } vector<LL> a(sz, 0), x(sz, 1); FOR(i, 0, sz)a[i] = cmtable[i + 1];// , cout << i << ", " << a[i] << endl; Kitamasa mt(a); VL res = mt.calcA_N(N + sz); LL ans = 0; FOR(i, 0, sz) { ans += res[i]; ans %= MOD; } return ans; } signed main() { cin.tie(0); ios_base::sync_with_stdio(false); LL N, P, C; cin >> N >> P >> C; cout << solve(N, P, C) << endl; return 0; assert(solve(1, 1, 1) == 36); assert(solve(1, 2, 0) == 21); assert(solve(5, 2, 0) == 41); assert(solve(6, 2, 0) == 61); assert(solve(1, 10, 10) == 9018009); assert(solve(100000, 8, 12) == 144097395); return 0; }