結果
問題 | No.214 素数サイコロと合成数サイコロ (3-Medium) |
ユーザー | anta |
提出日時 | 2015-11-14 18:08:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 327 ms / 3,000 ms |
コード長 | 1,741 bytes |
コンパイル時間 | 846 ms |
コンパイル使用メモリ | 68,516 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 03:17:16 |
合計ジャッジ時間 | 2,418 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 321 ms
5,248 KB |
testcase_01 | AC | 299 ms
5,376 KB |
testcase_02 | AC | 327 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:78:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘ll’ {aka ‘long long int’} [-Wformat=] 78 | printf("%d\n", ans % Mod); | ~^ ~~~~~~~~~ | | | | int ll {aka long long int} | %lld
ソースコード
#include <iostream> #include <vector> #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) using namespace std; typedef long long ll; typedef vector<int> Poly; const int Mod = 1000000007; inline void add(int &x, int y) { if((x += y) >= Mod) x -= Mod; } Poly doDP(const int a[6], int n) { vector<Poly> dp(n+1, Poly(a[5] * n + 1)); dp[0][0] = 1; int z = a[0]; rep(k, 6) { int d = a[k]; for(int t = 0; t < n; ++ t) for(int i = t * z; i <= t * d; ++ i) add(dp[t + 1][i + d], dp[t][i]); } return dp[n]; } Poly mul(const Poly &p, const Poly &q) { int pn = p.size(), qn = q.size(); if(pn == 0 || qn == 0) return Poly(); Poly r(pn + qn - 1); rep(i, pn) rep(j, qn) add(r[i + j], (ll)p[i] * q[j] % Mod); return r; } Poly rem(const Poly &p, const Poly &q) { int pd = p.size() - 1, qd = q.size() - 1; if(pd < qd) return p; Poly r = p; for(int i = pd; i >= qd; -- i) { int t = Mod - r[i]; rep(j, qd) add(r[i - qd + j], (ll)t * q[j] % Mod); } r.resize(qd); return r; } Poly powmod(const Poly &t, ll K, const Poly &q) { Poly p = rem(t, q); int l = 0; while((K >> l) > 1) ++ l; Poly res = p; for(-- l; l >= 0; -- l) { res = rem(mul(res, res), q); if(K >> l & 1) res = rem(mul(res, p), q); } return res; } int main() { long long N; int P, C; cin >> N >> P >> C; const int ps[6] = { 2, 3, 5, 7, 11, 13 }; const int cs[6] = { 4, 6, 8, 9, 10, 12 }; vector<int> cntP, cntC; cntP = doDP(ps, P); cntC = doDP(cs, C); int X = P * ps[5] + C * cs[5]; Poly pc = mul(cntP, cntC); pc.resize(X + 1); Poly mod(X + 1); rep(i, X) mod[i] = Mod - pc[X - i]; mod[X] = 1; Poly v = powmod(Poly{{0, 1}}, X + (N - 1), mod); ll ans = 0; rep(i, v.size()) ans += v[i]; printf("%d\n", ans % Mod); return 0; }