結果

問題 No.1105 Many Triplets
ユーザー ぷらぷら
提出日時 2021-04-17 14:32:08
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,588 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 207,676 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-16 23:35:07
合計ジャッジ時間 3,764 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,388 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 2 ms
4,504 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,384 KB
testcase_11 AC 1 ms
4,384 KB
testcase_12 AC 2 ms
4,384 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 1 ms
4,384 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 1 ms
4,384 KB
testcase_25 AC 2 ms
4,380 KB
testcase_26 AC 1 ms
4,384 KB
testcase_27 AC 2 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int mod = 1000000007;

vector<vector<long long>> Mul(vector<vector<long long>> A,vector<vector<long long>> B) {
    vector<vector<long long>>ans(A.size(),vector<long long>(A.size()));
    for(int i = 0; i < A.size(); i++) {
        for(int j = 0; j < A.size(); j++) {
            for(int k = 0; k < A.size(); k++) {
                ans[i][j] += A[i][k]*B[k][j]%mod;
                ans[i][j] %= mod;
            }
        }
    }
    return ans;
}

vector<vector<long long>> Pow(vector<vector<long long>> A,long long B) {
    vector<vector<long long>>ans(A.size(),vector<long long>(A.size()));
    for(int i = 0; i < A.size(); i++) {
        ans[i][i] = 1;
    }
    while (B) {
        if(1 & B) {
            ans = Mul(ans,A);
        }
        A = Mul(A,A);
        B /= 2;
    }
    return ans;
}

int main() {
    long long N;
    int A,B,C;
    cin >> N >> A >> B >> C;
    vector<vector<long long>>tmp(3,vector<long long>(3));
    tmp[0][0] = 1;
    tmp[0][1] = 1000000006;
    tmp[1][1] = 1;
    tmp[1][2] = 1000000006;
    tmp[2][2] = 1;
    tmp[2][0] = 1000000006;
    tmp = Pow(tmp,N-1);
    long long a = 0,b = 0,c = 0;
    a += tmp[0][0]*A%mod;
    b += tmp[1][0]*A%mod;
    c += tmp[2][0]*A%mod;
    a %= mod;
    b %= mod;
    c %= mod;
    a += tmp[0][1]*B%mod;
    b += tmp[1][1]*B%mod;
    c += tmp[2][1]*B%mod;
    a %= mod;
    b %= mod;
    c %= mod;
    a += tmp[0][2]*C%mod;
    b += tmp[1][2]*C%mod;
    c += tmp[2][2]*C%mod;
    a %= mod;
    b %= mod;
    c %= mod;
    cout << a << " " << b << " " << c << endl;
}
0