結果

問題 No.2156 ぞい文字列
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-05 15:04:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 1,349 ms
コンパイル使用メモリ 113,700 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 10:54:25
合計ジャッジ時間 2,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

const ll modc = 998244353;

vector<vector<ll>> dot(vector<vector<ll>> &a, vector<vector<ll>> &b){
    vector<vector<ll>> c(2, vector<ll>(2));
    for (int i=0; i<2; i++){
        for (int k=0; k<2; k++){
            for (int j=0; j<2; j++){
                c[i][j] += (a[i][k] * b[k][j]) % modc;
                c[i][j] %= modc;
            }
        }
    }
    return c;
}

int main(){

    ll N;
    cin >> N;
    if (N == 2){
        cout << 1 << endl;
        return 0;
    }
    N -= 2;
    vector<vector<ll>> A = {{1,1},{1,0}}, B={{1,0},{0,1}};

    while(N){
        if (N % 2 == 1) B = dot(A, B);
        N >>= 1;
        A = dot(A, A);
    }

    cout << (modc + B[0][0] * 2 + B[0][1] - 1) % modc << endl; 

    return 0;
}
0