結果
問題 | No.194 フィボナッチ数列の理解(1) |
ユーザー | WinField95 |
提出日時 | 2015-04-26 23:51:22 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,538 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 93,884 KB |
実行使用メモリ | 13,588 KB |
最終ジャッジ日時 | 2024-07-05 03:01:15 |
合計ジャッジ時間 | 2,311 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 10 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,944 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 6 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 8 ms
6,940 KB |
testcase_16 | AC | 7 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,940 KB |
testcase_18 | AC | 8 ms
6,944 KB |
testcase_19 | AC | 10 ms
6,940 KB |
testcase_20 | AC | 16 ms
12,512 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 10 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 4 ms
6,940 KB |
testcase_33 | AC | 5 ms
6,940 KB |
testcase_34 | AC | 4 ms
6,940 KB |
testcase_35 | AC | 4 ms
6,944 KB |
testcase_36 | AC | 8 ms
6,940 KB |
testcase_37 | AC | 3 ms
6,944 KB |
testcase_38 | AC | 8 ms
6,944 KB |
testcase_39 | AC | 4 ms
6,944 KB |
ソースコード
#include<iostream> #include<sstream> #include<algorithm> #include<map> #include<set> #include<queue> #include<complex> #include<cstdio> #include<cstdlib> #include<cstring> // #define DEBUG using namespace std; // typedef pair<int,int>P; // typedef complex<double>P; typedef long long int ll; typedef unsigned long long int ull; const int INF = 1e9; const double EPS=1e-9; const ll MOD = 1000000007; ll N,K; vector<ll>F; void solve1(){ int sum = 0; for(int i = 0 ; i < N ; i++)sum += F[i]; for(int i = N ; i < K ; i++){ F.push_back(sum); sum = sum - F[i-N] + F[F.size()-1]; } int S = 0; for(int i = 0 ; i < K ; i++){ S = (S + F[i])%MOD; } cout << F[K-1] << ' ' << S << endl; } class Matrix :public vector<vector<ll> >{ public: Matrix(int _n){ for(int i = 0 ; i < _n ; i++){ this->push_back(vector<ll>(_n,0)); } } Matrix operator * (Matrix& m1){ int size = m1.size(); Matrix ret = Matrix(size); for(int i = 0 ; i < size ; i++){ for(int j = 0 ; j < size ; j++){ for(int k = 0 ; k < size ; k++){ ret[i][j] = (ret[i][j] + (*this)[i][k] * m1[k][j])%MOD; } } } return ret; } static Matrix getIdentity(int _n){ Matrix ret(_n); for(int i = 0 ; i < _n ; i++)ret[i][i] = 1; return ret; }; void display(){ int size = this->size(); for(int i = 0 ; i < size ; i++){ for(int j = 0 ; j < size ; j++){ cout << (*this)[i][j] << ' ' ; } cout << endl; } } }; Matrix pow(Matrix m,ll t){ Matrix ret(m.size()); if(t == 0)return m.getIdentity(m.size()); if(t == 1)return m; ret = pow(m,t/2); if(t % 2)return ret*ret*m; else return ret*ret; } void solve2(){ /* Matrix s_mat(N),e_mat(N),mat(N); for(int i = 0 ; i < N ; i++)mat[N-1][i] = 1; for(int i = 0 ; i < N-1 ; i++)mat[i][i+1] = 1; for(int i = 0 ; i < N ; i++)s_mat[i][0] = F[i]; e_mat = pow(mat,K-1)*s_mat; cout << e_mat[0][0] << ' ' << endl; */ Matrix s_mat(N+1),e_mat(N+1),mat(N+1); for(int i = 1 ; i < N+1 ; i++)mat[N][i] = 1; for(int i = 1 ; i < N ; i++)mat[i][i+1] = 1; mat[0][0] = 1; mat[0][2] = 1; s_mat[0][0] = F[0]; for(int i = 0 ; i < N ; i++)s_mat[i+1][0] = F[i]; e_mat = pow(mat,K-1)*s_mat; cout << e_mat[1][0] << ' ' << e_mat[0][0] << endl; } int main(int argc, char *argv[]) { cin >> N >> K; for(int i = 0 ; i < N ; i++){ int num; cin >> num; F.push_back(num); } if(2 <= N <= 10000 && N < K && K <= 1000000){ solve1(); } else { solve2(); } return 0; }