摘要:
Problem A Welcome 模拟 Problem B 绿地装饰 模拟 Problem C 击鼓传花 模拟 Problem D 旅行 线段树 Problem E 解密 模拟 Problem F 巍巍岳麓 最小生成树 Problem G Solution Sets 搜索+剪枝 Problem H 阅读全文
摘要:
1537 序列的混乱程度 水题 1538 随机数 水题 1539 完美序列 dp 1540 第k大数 二分搜索 1541 选房子 水题 1542 Game 1543 Numbers 模拟+二进制 1544 Counting Words stringstream操作 1 #include <bits/ 阅读全文
摘要:
P3366【模板】最小生成树 Kruskal 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int maxn = 5005; 5 int fa[maxn], n, m, ans = 阅读全文
摘要:
P1226 【模板】快速幂||取余运算 在计算$a*b\ \%\ p$和$a^{b}\ \%\ p$的时候,我们通常采用快速乘和快速幂来解决$long\ long$乘法溢出的问题 快速乘$a*b\ \%\ p$ 1 ll qmul(ll a, ll b, ll p) { 2 ll res = 0; 阅读全文