結果
問題 | No.1073 無限すごろく |
ユーザー | SSRS |
提出日時 | 2020-06-05 21:52:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,200 bytes |
コンパイル時間 | 1,383 ms |
コンパイル使用メモリ | 172,496 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 20:53:41 |
合計ジャッジ時間 | 2,207 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 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 | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 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 | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; long long MOD = 1000000007; long long p = 166666668; vector<vector<long long>> matrix_multiplication(vector<vector<long long>> &A, vector<vector<long long>> &B){ int a = A.size(); int b = A[0].size(); int c = B[0].size(); vector<vector<long long>> ans(a, vector<long long>(c, 0)); for (int i = 0; i < a; i++){ for (int j = 0; j < b; j++){ for (int k = 0; k < c; k++){ ans[i][k] = (ans[i][k] + A[i][j] * B[j][k]) % MOD; } } } return ans; } vector<vector<long long>> matrix_exponentiation(vector<vector<long long>> &mat, int p){ int N = mat.size(); vector<vector<long long>> ans(6, vector<long long>(6, 0)); for (int i = 0; i < 6; i++){ ans[i][i] = 1; } while (p > 0){ if (p % 2 == 1){ ans = matrix_multiplication(ans, mat); } mat = matrix_multiplication(mat, mat); p = p / 2; } return ans; } int main(){ long long N; cin >> N; vector<vector<long long>> mat(6, vector<long long>(6, 0)); for (int i = 0; i < 6; i++){ mat[0][i] = p; } for (int i = 1; i < 6; i++){ mat[i][i - 1] = 1; } mat = matrix_exponentiation(mat, N); cout << mat[0][0] << endl; }