結果

問題 No.720 行列のできるフィボナッチ数列道場 (2)
ユーザー xuzijian629xuzijian629
提出日時 2018-09-06 17:07:33
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 2,327 bytes
コンパイル時間 1,026 ms
コンパイル使用メモリ 96,372 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-14 12:37:37
合計ジャッジ時間 2,295 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <stack>
#include <queue>
#include <map>
#include <chrono>
#include <random>
#include <unordered_map>
#include <cassert>
#pragma GCC optimize("O3")
#pragma comment(linker, "STACK:36777216")
using namespace std;
using i64 = int64_t;
constexpr i64 MOD = 1e9 + 7;
mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());
using vi = vector<i64>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
using ii = pair<i64, i64>;

i64 pow(i64 a, i64 n) {
    if (n == 0) return 1;
    if (n % 2 == 0) {
        i64 t = pow(a, n / 2);
        return t * t % MOD;
    }
    return a * pow(a, n - 1) % MOD;
}

i64 inv(i64 a) {
    return pow(a, MOD - 2);
}

struct mat {
    i64 a, b, c, d;
    
    mat operator*(mat m) {
        return {
            (a * m.a + b * m.c) % MOD,
            (a * m.b + b * m.d) % MOD,
            (c * m.a + d * m.c) % MOD,
            (c * m.b + d * m.d) % MOD
        };
    }
    mat operator+(mat m) {
        return {
            a + m.a,
            b + m.b,
            c + m.c,
            d + m.d
        };
    }
    mat operator*(i64 k) {
        return {
            (a * k) % MOD,
            (b * k) % MOD,
            (c * k) % MOD,
            (d * k) % MOD
        };
    }
    
    mat operator~() {
        assert(a * d - b * c != 0);
        i64 det = (a * d - b * c) % MOD;
        return {
            (d * inv(det)) % MOD,
            (-b * inv(det)) % MOD,
            (-c * inv(det)) % MOD,
            (a * inv(det)) % MOD
        };
    }
};

mat pow(mat m, i64 n) {
    if (n == 0) return {1,0,0,1};
    if (n % 2 == 0) {
        mat t = pow(m, n / 2);
        return t * t;
    }
    return m * pow(m, n - 1);
}

i64 fib(i64 n) {
    if (n <= 1) return n;
    mat res = pow({1,1,1,0}, n - 2);
    return (res.a + res.b) % MOD;
}

int main() {
    i64 n, m;
    cin >> n >> m;
    if (n == 1) {
        i64 ans = 0;
        for (int i = 1; i <= m; i++) {
            ans += fib(m);
            ans %= MOD;
        }
        cout << ans << endl;
        return 0;
    }
    mat a = pow({1,1,1,0}, m - 2);
    mat b = pow({1,1,1,0}, m);
    mat id = {1,0,0,1};
    mat res = a * (id + pow(b, n) * (-1)) * (~(id + b * (-1)));
    cout << ((res.a + res.b) % MOD + MOD) % MOD << endl;
}


0