結果

問題 No.657 テトラナッチ数列 Easy
ユーザー 0w10w1
提出日時 2018-04-07 01:53:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 1,058 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 207,868 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 10:55:43
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 117 ms
5,376 KB
testcase_10 AC 149 ms
5,376 KB
testcase_11 AC 150 ms
5,376 KB
testcase_12 AC 182 ms
5,376 KB
testcase_13 AC 216 ms
5,376 KB
testcase_14 AC 219 ms
5,376 KB
testcase_15 AC 217 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<typename T>
using vec = vector<T>;

template<typename T>
using mat = vec<vec<T>>;

template<typename T>
mat<T> mat_mul(mat<T> a, mat<T> b) {
  mat<T> c(a.size(), vec<T>(b[0].size()));
  for (int i = 0; i < a.size(); ++i) {
    for (int k = 0; k < b.size(); ++k) {
      for (int j = 0; j < b[0].size(); ++j) {
        (c[i][j] += a[i][k] * b[k][j] % 17) %= 17;
      }
    }
  }
  return c;
}

template<typename T>
mat<T> mat_pow(mat<T> a, int64_t p) {
  mat<T> r = a;
  for (int64_t i = p - 1; i; i >>= 1) {
    if (i & 1) r = mat_mul(r, a);
    a = mat_mul(a, a);
  }
  return r;
}

signed main() {
  ios::sync_with_stdio(false);
  mat<int> f(4, vec<int>(4));
  for (int i = 0; i < 3; ++i) f[i][i + 1] = 1;
  for (int i = 0; i < 4; ++i) f[3][i] = 1;
  mat<int> x(4, vec<int>(1));
  x[3][0] = 1;
  int Q;
  cin >> Q;
  while (Q--) {
    int64_t N;
    cin >> N;
    if (N == 1) {
      cout << 0 << endl;
    } else {
      cout << mat_mul(mat_pow(f, N - 1), x)[0][0] << endl;
    }
  }
  return 0;
}
0