結果

問題 No.2156 ぞい文字列
ユーザー umimelumimel
提出日時 2022-12-09 22:00:04
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,344 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 170,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-22 22:07:46
合計ジャッジ時間 2,704 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 2 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 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

vector<vector<ll>> mul(vector<vector<ll>> A, vector<vector<ll>> B, ll mod){
    vector<vector<ll>> C((ll)A.size(), vector<ll>((ll)B[0].size(), 0));
    for(ll i=0; i<(ll)A.size(); i++){
        for(ll k=0; k<(ll)B.size(); k++){
            for(ll j=0; j<(ll)B[0].size(); j++){
                C[i][j] = (C[i][j]+A[i][k]*B[k][j])%mod;
            }
        }
    }
 
    return C;
}
 
vector<vector<ll>> mat_pow_mod(vector<vector<ll>> A, ll n, ll mod){
    ll siz = (ll)A.size();
    vector<vector<ll>> B(siz, vector<ll>(siz, 0));
    rep(i, siz) B[i][i] = 1;
    while(n > 0){
        if(n & 1) B = mul(B, A, mod);
        A = mul(A, A, mod);
        n >>= 1;
    }
 
    return B;
}

int main(){
    ll n;
    cin >> n;

    vector<vector<ll>> a(3, vector<ll>(3, 0));
    a[0][0]=1; a[0][1]=1; a[0][2]=0;
    a[1][0]=1; a[1][1]=0; a[1][2]=1;
    a[2][0]=0; a[2][1]=0; a[2][2]=1;
    a = mat_pow_mod(a, n-1, MOD2);
    cout << (a[0][2]+a[1][2])%MOD2 << endl;
}
0