pre { white-space: pre !important; word-wrap: normal !important; overflow-x: auto !important; display: block !important; font-family: "Consolas", "Monaco", "Courier New", …
题目链接:https://www.luogu.com.cn/problem/P3390
矩阵快速幂模板题。
示例程序:
#include <bits/stdc++.h>
using namespace std;
const int maxn = 105;
const long long mod = 1e9 + 7;struct Matrix {int…