結果

問題 No.534 フィボナッチフィボナッチ数
ユーザー treeonetreeone
提出日時 2017-06-24 00:05:18
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,816 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 165,136 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-03 03:55:31
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
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 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 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < n; i++)
#define repb(i, a, b) for(int i = a; i >= b; i--)
#define all(a) a.begin(), a.end()
#define o(a) cout << a << endl
#define int long long
#define fi first
#define se second
using namespace std;
typedef pair<int, int> P;

// typedef double number;
typedef int number;
const number eps = 1e-8;
typedef vector<number> ARRAY;
const int mod0 = 1e9 + 7;
typedef vector<ARRAY> matrix;

// O( n )
matrix identity(int n) {
  matrix A(n, ARRAY(n));
  for (int i = 0; i < n; ++i) A[i][i] = 1;
  return A;
}
// O( n )
number inner_product(const ARRAY &a, const ARRAY &b) {
  number ans = 0;
  for (int i = 0; i < a.size(); ++i)
    ans += a[i] * b[i];
  return ans;
}
// O( n^2 )
ARRAY mul(const matrix &A, const ARRAY &x) {
  ARRAY y(A.size());
  for (int i = 0; i < A.size(); ++i)
    for (int j = 0; j < A[0].size(); ++j)
      y[i] = A[i][j] * x[j];
  return y;
}
// O( n^3 )
matrix mul(const matrix &A, const matrix &B, const int mod) {
  matrix C(A.size(), ARRAY(B[0].size()));
  for (int i = 0; i < C.size(); ++i)
    for (int j = 0; j < C[i].size(); ++j)
      for (int k = 0; k < A[i].size(); ++k){
        C[i][j] += (A[i][k] * B[k][j] % mod);
        C[i][j] %= mod;
      }
  return C;
}
// O( n^3 log e )
matrix pow(const matrix &A, int e, const int mod) {
  return e == 0 ? identity(A.size())  :
     e % 2 == 0 ? pow(mul(A, A, mod), e/2, mod) : mul(A, pow(A, e-1, mod), mod);
}

signed main(){
    int n;
    cin >> n;
    vector<vector<int> > A(2, vector<int>(2, 0));
    A[0][0] = A[0][1] = A[1][0] = 1;
    A[1][1] = 0;
    vector<vector<int> > B = A;
    int mod1 = 2 * mod0 + 2;
    B = pow(A, n, mod1);
    B[1][0] = (B[1][0] + mod1) % mod1;
    cout << B[1][0] << endl;
    // A = pow(A, B[1][0], mod0);
    cout << A[1][0] << endl;
}
0