結果

問題 No.1704 Many Bus Stops (easy)
ユーザー miscalcmiscalc
提出日時 2021-10-08 23:17:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 2,233 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 211,388 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-30 13:08:37
合計ジャッジ時間 7,242 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 130 ms
4,376 KB
testcase_02 AC 43 ms
4,376 KB
testcase_03 AC 42 ms
4,376 KB
testcase_04 AC 43 ms
4,380 KB
testcase_05 AC 43 ms
4,376 KB
testcase_06 AC 43 ms
4,380 KB
testcase_07 AC 43 ms
4,376 KB
testcase_08 AC 43 ms
4,376 KB
testcase_09 AC 43 ms
4,376 KB
testcase_10 AC 44 ms
4,380 KB
testcase_11 AC 42 ms
4,376 KB
testcase_12 AC 44 ms
4,380 KB
testcase_13 AC 43 ms
4,380 KB
testcase_14 AC 42 ms
4,376 KB
testcase_15 AC 43 ms
4,376 KB
testcase_16 AC 43 ms
4,380 KB
testcase_17 AC 43 ms
4,380 KB
testcase_18 AC 43 ms
4,376 KB
testcase_19 AC 42 ms
4,376 KB
testcase_20 AC 43 ms
4,376 KB
testcase_21 AC 42 ms
4,380 KB
testcase_22 AC 113 ms
4,380 KB
testcase_23 AC 113 ms
4,376 KB
testcase_24 AC 114 ms
4,376 KB
testcase_25 AC 112 ms
4,380 KB
testcase_26 AC 114 ms
4,376 KB
testcase_27 AC 112 ms
4,380 KB
testcase_28 AC 113 ms
4,380 KB
testcase_29 AC 113 ms
4,376 KB
testcase_30 AC 113 ms
4,376 KB
testcase_31 AC 114 ms
4,380 KB
testcase_32 AC 113 ms
4,380 KB
testcase_33 AC 113 ms
4,376 KB
testcase_34 AC 113 ms
4,380 KB
testcase_35 AC 113 ms
4,380 KB
testcase_36 AC 113 ms
4,380 KB
testcase_37 AC 114 ms
4,376 KB
testcase_38 AC 112 ms
4,380 KB
testcase_39 AC 113 ms
4,380 KB
testcase_40 AC 113 ms
4,380 KB
testcase_41 AC 113 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using namespace atcoder;
//using mint = modint998244353;
using mint = modint1000000007;
using ll = long long;
using ld = long double;
using pll = pair<ll, ll>;
using tlll = tuple<ll, ll, ll>;
constexpr ll INF = 1LL << 60;
template<class T> bool chmin(T& a, T b) {if (a > b) {a = b; return true;} return false;}
template<class T> bool chmax(T& a, T b) {if (a < b) {a = b; return true;} return false;}
ll safemod(ll A, ll M) {return (A % M + M) % M;}
ll divfloor(ll A, ll B) {if (B < 0) {return divfloor(-A, -B);} return (A - safemod(A, B)) / B;}
ll divceil(ll A, ll B) {if (B < 0) {return divceil(-A, -B);} return divfloor(A + B - 1, B);}
#define FINALANS(A) do {cout << (A) << '\n'; exit(0);} while (false) 

using mmat = vector<vector<mint>>;
mmat mmatrixprod(mmat &A1, mmat &A2)
{
  ll n1 = A1.size(), n2 = A2.size();
  ll m1 = A1.front().size(), m2 = A2.front().size();

  if (n2 != m1)
  {
    cerr << "Error: matrix product is not defined\n";
    abort();
  }

  mmat ret(n1, vector<mint>(m2, 0));
  for (ll i = 0; i < n1; i++)
  {
    for (ll j = 0; j < m2; j++)
    {
      for (ll k = 0; k < n2; k++)
      {
        ret[i][j] += A1[i][k] * A2[k][j];
      }
    }
  }

  return ret;
}
mmat mmatrixpow(mmat &A1, ll k)
{
  ll n = A1.size();
  mmat A10(n, vector<mint>(n, 0));
  for (ll i = 0; i < n; i++)
  {
    for (ll j = 0; j < n; j++)
    {
      A10[i][j] = A1[i][j];
    }
  }
  
  mmat ret(n, vector<mint>(n, 0));
  for (ll i = 0; i < n; i++)
  {
    ret[i][i] = 1;
  }

  while (k > 0)
  {
    if ((k & 1) != 0)
      ret = mmatrixprod(ret, A10);
    A10 = mmatrixprod(A10, A10);
    k >>= 1;
  }

  return ret;
}

int main()
{
  const mint inv3 = mint(1) / 3;
  mmat A = {{inv3, 0, 0, 0, inv3, inv3},
            {0, inv3, 0, inv3, 0, inv3},
            {0, 0, inv3, inv3, inv3, 0},
            {1, 0, 0, 0, 0, 0},
            {0, 1, 0, 0, 0, 0},
            {0, 0, 1, 0, 0, 0}};

  ll T;
  cin >> T;
  for (ll t = 0; t < T; t++)
  {
    ll N;
    cin >> N;

    mmat pwA = mmatrixpow(A, N - 1);
    mmat x = {{inv3}, {0}, {0}, {1}, {0}, {0}};
    mmat y = mmatrixprod(pwA, x);
    mint ans = y.at(0).at(0);
    cout << ans.val() << '\n';
  }
}
0