結果
問題 | No.526 フィボナッチ数列の第N項をMで割った余りを求める |
ユーザー | 木村晃 |
提出日時 | 2023-01-15 17:09:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,169 bytes |
コンパイル時間 | 1,696 ms |
コンパイル使用メモリ | 174,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 04:55:59 |
合計ジャッジ時間 | 3,532 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; using vi=vector<int>; using vll=vector<ll>; using vii=vector<vector<int>>; using pii=pair<int,int>; using vvpii=vector<vector<pair<int,int>>>; #define all(x) x.begin(),x.end() #define rep0(i,a) for(int i=0;i<a;i++) #define rep(i,a,b) for(int i=a;i<b;i++) #define repll(i,a,b) for(ll i=a;i<b;i++) template<class T> inline bool chmin(T& a, T b) { if (a > b) {a = b;return true;}return false;} template<class T> inline bool chmax(T& a, T b) { if (a < b) {a = b;return true;}return false;} // const long long inf = 1LL<<60; const int INF = (1<<30); // const int MOD=1000000007; // const int MOD=10000000007; template<typename T> struct Kitamasa{ vector<T> a; // 初期値ベクトル vector<T> d; // 係数ベクトル int k; ll M; Kitamasa(vector<T>& a, vector<T>& d,ll M) : a(a), d(d), k((int)a.size()) {} // a_n の係数ベクトルを求める vector<T> dfs(int64_t n){ if(n == k) return d; vector<T> res(k); if(n & 1 || n < k * 2){ vector<T> x = dfs(n - 1); for(int i = 0; i < k; ++i) res[i] = (d[i]%M)*(x[k - 1]%M)%M; for(int i = 0; i + 1 < k; ++i) res[i + 1] += (x[i]%M); } else{ vector<vector<T>> x(k, vector<T>(k)); x[0] = dfs(n >> 1); for(int i = 0; i + 1 < k; ++i){ for(int j = 0; j < k; ++j) x[i + 1][j] = (d[j]%M) * (x[i][k - 1]%M)%M; for(int j = 0; j + 1 < k; ++j) x[i + 1][j + 1] += (x[i][j]%M); } for(int i = 0; i < k; ++i){ for(int j = 0; j < k; ++j){ res[j] += (x[0][i]%M) * (x[i][j]%M)%M; } } } return res; } // a_n を求める。nは0-index T calc(int64_t n){ vector<T> x = dfs(n); T res = 0; for(int i = 0; i < k; ++i) res += x[i] * a[i]%M; return res; } }; int main(){ ll N,M; cin>>N>>M; N--; vll a={0,1}; vll d={1,1}; Kitamasa<ll> k(a,d,M); int t_res=k.calc(N); t_res%=M; cout<<t_res<<endl; }