結果
問題 | No.444 旨味の相乗効果 |
ユーザー | ytft |
提出日時 | 2021-03-30 12:49:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,921 bytes |
コンパイル時間 | 1,707 ms |
コンパイル使用メモリ | 180,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-07 16:01:21 |
合計ジャッジ時間 | 3,710 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 53 ms
6,944 KB |
testcase_08 | AC | 15 ms
6,940 KB |
testcase_09 | AC | 7 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 6 ms
6,940 KB |
testcase_12 | AC | 615 ms
6,940 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 1 ms
6,944 KB |
testcase_22 | AC | 1 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | AC | 18 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
6,948 KB |
testcase_27 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int MOD=1000000007; template<typename type=int> class Matrix{ public: vector<vector<type>> value; Matrix(vector<vector<type>> e){ value=e; } Matrix<type> operator * (Matrix a){ vector<vector<type>> ret(value.size(),vector<type>(a.value[0].size())); type temp; for(int i=value.size()-1;i>=0;i--){ for(int j=a.value[0].size()-1;j>=0;j--){ temp=0; for(int k=a.value.size()-1;k>=0;k--){ temp=(temp+value[i][k]*a.value[k][j])%MOD; } ret[i][j]=temp; } } return Matrix(ret); } Matrix<type> pow(int p){ Matrix temp=value; Matrix ans=temp; bool flg=false; while(p>0){ if(p%2){ if(flg){ ans=ans*temp; }else{ flg=true; ans=temp; } } p=p/2; temp=temp*temp; } return ans; } }; long long pawf(long long a,long long n){ long long ans=1; long long temp=a%MOD; while(n>0){ if(n%2){ ans=(ans*temp)%MOD; } temp=(temp*temp)%MOD; n=n/2; } return ans; } int main(){ long long n,c; cin>>n>>c; Matrix<long long> b(vector<vector<long long>>(n,vector<long long>(1,1))); vector<vector<long long>> Av(n,vector<long long>(n,0)); vector<long long> a(n); for(int i=0;i<n;i++){ cin>>a[i]; } for(int i=0;i<n;i++){ for(int j=0;j<=i;j++){ Av[i][j]=a[j]%MOD; } } Matrix<long long> A(Av); Matrix<long long> p=A.pow(c); long long ans=(A.pow(c)*b).value[n-1][0]; for(int i=0;i<n;i++){ ans=ans-pawf(a[i],c); } while(ans<0)ans+=MOD; cout<<ans<<endl; }