結果
問題 | No.613 Solitude by the window |
ユーザー | Pachicobue |
提出日時 | 2017-12-14 01:29:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,676 bytes |
コンパイル時間 | 2,098 ms |
コンパイル使用メモリ | 201,712 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 08:21:57 |
合計ジャッジ時間 | 2,698 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; ll N, M; struct Matrix { Matrix() { for (int i = 0; i < 2; i++) { for (int j = 0; j < 2; j++) { table[i][j] = 0; } } } static Matrix Unit() { Matrix ans; ans.table[0][0] = 1; ans.table[1][1] = 1; return ans; } Matrix operator*(const Matrix& mat) const { Matrix ans; for (int i = 0; i < 2; i++) { for (int j = 0; j < 2; j++) { for (int k = 0; k < 2; k++) { ans.table[i][j] += (table[i][k] * mat.table[k][j]) % M; ans.table[i][j] %= M; } } } return ans; } array<array<ll, 2>, 2> table; }; ll power(const ll n, const ll mod) { if (n == 0) { return 1; } if (n % 2 == 1) { return (power(n - 1, mod) * 2) % mod; } else { const __int128_t pp = power(n / 2, mod); return (pp * pp) % M; } } Matrix power(const Matrix& mat, const ll n) { if (n == 0) { return Matrix::Unit(); } if (n % 2 == 1) { return power(mat, n - 1) * mat; } else { const Matrix pp = power(mat, n / 2); return pp * pp; } } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> N >> M; Matrix mat; mat.table[0][0] = 2; mat.table[0][1] = 3; mat.table[1][0] = 1; mat.table[1][1] = 2; const ll mod = (M - 1) * (M + 1); const Matrix ans = power(mat, power(N, mod)); cout << (2 * ans.table[0][0] + M - 2) % M << endl; return 0; }