結果
問題 | No.995 タピオカオイシクナーレ |
ユーザー | suzuken_w |
提出日時 | 2020-03-13 23:57:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 12 ms / 2,000 ms |
コード長 | 3,258 bytes |
コンパイル時間 | 1,949 ms |
コンパイル使用メモリ | 184,248 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 11:59:46 |
合計ジャッジ時間 | 3,490 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 12 ms
5,376 KB |
testcase_17 | AC | 11 ms
5,376 KB |
testcase_18 | AC | 12 ms
5,376 KB |
testcase_19 | AC | 12 ms
5,376 KB |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 11 ms
5,376 KB |
testcase_22 | AC | 12 ms
5,376 KB |
testcase_23 | AC | 12 ms
5,376 KB |
testcase_24 | AC | 12 ms
5,376 KB |
testcase_25 | AC | 12 ms
5,376 KB |
ソースコード
#pragma GCC optimize("O3") #include<bits/stdc++.h> using namespace std; using ll=long long; using P=pair<ll,ll>; template<class T> using V=vector<T>; #define fi first #define se second #define all(v) (v).begin(),(v).end() const ll inf=(1e18); constexpr ll mod=1000000007; ll gcd(ll a,ll b) {return b ? gcd(b,a%b):a;} ll lcm(ll c,ll d){return c/gcd(c,d)*d;} struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<<fixed<<setprecision(15);}} __init; template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; } struct mint{ using ull=unsigned long long int; ull v; mint(ll vv=0){s(vv%mod+mod);} mint& s(ull vv){ v=vv<mod?vv:vv-mod; return *this; } //オーバーロード mint operator-()const{return mint()-*this;}//符号反転 mint&operator+=(const mint&val){return s(v+val.v);} mint&operator-=(const mint&val){return s(v+mod-val.v);} mint&operator*=(const mint&val){ v=ull(v)*val.v%mod; return *this; } mint&operator/=(const mint&val){return *this*=val.inv();} mint operator+(const mint&val){return mint(*this)+=val;} mint operator-(const mint&val){return mint(*this)-=val;} mint operator*(const mint&val){return mint(*this)*=val;} mint operator/(const mint&val){return mint(*this)/=val;} mint pow(ll n)const{ mint res(1),x(*this); while(n){ if(n&1)res*=x; x*=x; n>>=1; } return res; } mint inv()const{return pow(mod-2);} //拡張ユークリッドの互除法 /* mint inv()const{ int x,y; int g=extgcd(v,mod,x,y); assert(g==1); if(x<0)x+=mod; return mint(x); }*/ friend ostream& operator<<(ostream&os,const mint&val){ return os<<val.v; }//出力 bool operator<(const mint&val)const{return v<val.v;} bool operator==(const mint&val)const{return v==val.v;} bool operator>(const mint&val)const{return v>val.v;} }; ll n;//n項前のフィボナッチ数列 O(n^3 log k) vector<mint> matmul(vector<mint> &dp,vector<vector<mint>> &mat){ vector<mint> res(n,0); for(int i=0;i<n;i++)for(int j=0;j<n;j++)res[i]+=mat[i][j]*dp[j]; return res; } vector<vector<mint>> update(vector<vector<mint>> &mat){ vector<vector<mint>> res(n,vector<mint>(n,0)); for(int i=0;i<n;i++)for(int j=0;j<n;j++)for(int k=0;k<n;k++)res[i][j]+=mat[i][k]*mat[k][j]; return res; } void matpow(vector<mint> &dp,vector<vector<mint>> &mat,ll k){ while(k){ if(k&1)dp=matmul(dp,mat); mat=update(mat); k>>=1; } } int main(){ n=2; ll N,m,k,p,q; cin>>N>>m>>k>>p>>q; V<ll> b(N); for(int i=0;i<N;i++)cin>>b[i]; mint A,B; B=mint(p)/mint(q); A=mint(1)-B; vector<mint> dp1(2,1),dp2(2,1); dp1[1]=0;dp2[0]=0; vector<vector<mint>> mat1(2,vector<mint>(2)),mat2(2,vector<mint>(2)); mat1[0][0]=mat1[1][1]=A; mat1[0][1]=mat1[1][0]=B; mat2[0][0]=mat2[1][1]=A; mat2[0][1]=mat2[1][0]=B; matpow(dp1,mat1,k); matpow(dp2,mat2,k); mint ans=0; for(int i=0;i<N;i++){ if(i<m)ans+=dp1[0]*mint(b[i]); else ans+=dp2[0]*mint(b[i]); } cout<<ans<<"\n"; }