摘要: > 注:本文按 MX 主观顺序排列 ## 基础 () ## 快速幂 ``` int qp(int a,int b){ long long ans=1,base=a; while(b>0){ if(b&1)(ans*=base)%=p; (base*=base)%=p; b>>=1; } return 阅读全文
posted @ 2023-06-20 14:33 MX_muxi 阅读(26) 评论(0) 推荐(0)
摘要: 监督我? 洛谷 (有空加) 2023.4.25 20:00 开题 https://www.luogu.com.cn/problem/P3174 20:30 还是看不懂题意,寄。看题解了。 好评 https://www.luogu.com.cn/blog/forever-captain/solutio 阅读全文
posted @ 2023-04-25 20:06 MX_muxi 阅读(124) 评论(0) 推荐(1)
摘要: 输入输出 存储数据 阅读全文
posted @ 2023-03-07 21:10 MX_muxi 阅读(17) 评论(0) 推荐(0)
摘要: 2023.2.18 比赛地址 T1 题意 补题代码 #include<bits/stdc++.h> using namespace std; int n; int x[230],y[230]; int az1[20][20],az2[20][20]; bool checktie(){//需要优化 i 阅读全文
posted @ 2023-02-18 10:28 MX_muxi 阅读(35) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2023-02-14 21:28 MX_muxi 阅读(22) 评论(0) 推荐(0)
Title