摘要:
板子 处理模数运算的自定义数据类 点击查看代码 const int mod = 1e9+7; long long ext_gcd(long long a, long long b, long long &x, long long &y) { if (b == 0) { x = 1; y = 0; r 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; #define int long long #define endl '\n' #define pii pair<int, int> const int mod = 998244353; const int 阅读全文
摘要:
K Tokitsukaze and Shawarma 签到题,三种时长去max即可。 点击查看代码 #include <bits/stdc++.h> using namespace std; #define endl '\n' #define int long long typedef pair<i 阅读全文