結果

問題 No.718 行列のできるフィボナッチ数列道場 (1)
ユーザー rpy3cpprpy3cpp
提出日時 2018-08-11 16:21:40
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,586 bytes
コンパイル時間 2,340 ms
コンパイル使用メモリ 210,960 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-24 13:55:15
合計ジャッジ時間 3,738 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 1 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using T = long long;
using vvt = vector<vector<T>>;
constexpr long long MOD = 1e9+7;


vvt identity_mat(int n){
    vvt I(n, vector<T>(n, 0));
    for (int i = 0; i != n; ++i) I[i][i] = 1;
    return I;
}

vvt matmul(const vvt & a, const vvt & b, const long long mod = MOD){
    int n_row = a.size();
    int n_col = b[0].size();
    assert(a[0].size() == b.size());
    vvt c(n_row, vector<T>(n_col, 0));
    for (int i = 0; i != n_row; ++i){
        for (int j = 0; j != n_col; ++j){
            for (int k = 0; k != b.size(); ++k){
                c[i][j] = (c[i][j] + a[i][k] * b[k][j]) % mod;
            }
        }
    }
    return c;
}

vvt matpow(vvt mat, long long n, const long long mod = MOD){
    // a^n を求める。
    assert(mat.size() == mat[0].size());
    vvt ans = identity_mat(mat.size());
    while (n){
        if (n & 1) ans = matmul(ans, mat, mod);
        mat = matmul(mat, mat, mod);
        n >>= 1;
    }
    return ans;
}

long long fib(long long n, long long mod = MOD){
    // fib(0) = 0, fib(1) = 1, fib(n+2) = (fib(n) + fib(n+1)) % mod
    vvt mat = {{1, 1}, {1, 0}};
    vvt ans = matpow(mat, n, mod);
    return ans[1][0];
}

pair<long long, long long> fib_pair(long long n, long long mod = MOD){
    // fib(0) = 0, fib(1) = 1, fib(n+2) = (fib(n) + fib(n+1)) % mod
    vvt mat = {{1, 1}, {1, 0}};
    vvt ans = matpow(mat, n, mod);
    return {ans[0][0], ans[1][0]};
}


int main() {
    long long N;
    cin >> N;
    auto [f1, f2] = fib_pair(N);
    cout << (f1 * f2 % MOD) << endl;
    return 0;
}
0