結果
問題 | No.213 素数サイコロと合成数サイコロ (3-Easy) |
ユーザー | kmjp |
提出日時 | 2015-05-26 02:30:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 51 ms / 3,000 ms |
コード長 | 2,300 bytes |
コンパイル時間 | 1,435 ms |
コンパイル使用メモリ | 167,044 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 08:34:07 |
合計ジャッジ時間 | 1,582 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
5,248 KB |
testcase_01 | AC | 51 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<to;x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- ll N; int P,C,M; int AA[6]={2,3,5,7,11,13}; int B[6]={4,6,8,9,10,12}; ll mo=1000000007; ll dp[2][400][4000]; ll dp2[8000]; ll single[8010]; ll A[4000][4000]; vector<ll> mult(vector<ll>& v,vector<ll>& v2) { int i,j; vector<ll> t(2*M,0); FOR(i,M) FOR(j,M) t[i+j] += v[i]*v2[j] % mo; for(i=M;i<2*M-1;i++) { ll ti=t[i]%mo; if(ti) FOR(j,M) t[j] += A[i][j]*ti % mo; } FOR(j,M) ((t[j]%=mo)+=mo)%=mo; t.resize(M); return t; } void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>P>>C; dp[0][0][0]=dp[1][0][0]=1; FOR(x,6) { for(y=P-1;y>=0;y--) { FOR(i,y*13+1) if(dp[0][y][i]) { for(r=1;r+y<=P;r++) (dp[0][y+r][i+r*AA[x]] += dp[0][y][i])%=mo; } } for(y=C-1;y>=0;y--) { FOR(i,y*12+1) if(dp[1][y][i]) { for(r=1;r+y<=C;r++) (dp[1][y+r][i+r*B[x]] += dp[1][y][i])%=mo; } } } FOR(x,700) FOR(y,700) (single[x+y] += dp[0][P][x]*dp[1][C][y])%=mo; M=P*13+C*12; dp2[0]=1; for(i=1;i<=2*M+2;i++) { FOR(x,M+1) if(i>=x) dp2[i] += dp2[i-x]*single[x]%mo; dp2[i] %= mo; } ll tot=0; if(N<=2*M) { for(ll v=max(0LL,N-M);v<N;v++) { for(x=1;x<=M;x++) if(v+x>=N) tot += dp2[v]*single[x]%mo; tot %= mo; } } else { FOR(i,M) A[i][i]=1; for(x=M;x<2*M;x++) { FOR(y,M) { for(r=1;r<=M;r++) A[x][y]+=A[x-r][y]*single[r]%mo; A[x][y] %= mo; } } ll v=N-M; vector<ll> R(M,0),V(M,0); R[0]=V[1]=1; while(v) { if(v%2) R=mult(R,V); V=mult(V,V); v/=2; } for(ll v=max(0LL,N-M);v<N;v++) { ll pat=0; for(x=0;x<=M-1;x++) pat += R[x]*dp2[v-(N-M)+x] % mo; pat %= mo; for(x=1;x<=M;x++) if(v+x>=N) tot += pat*single[x]%mo; tot %= mo; } } cout<<tot%mo<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); solve(); return 0; }