题解列表
1262: 邮局选址问题(模拟退火)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
struct poit
{
int x;
int y;
}p[1……
模拟分类(标题不能太短)
摘要:# 模拟分类
## 解题思路
举个例子:
假设要找区间[1, 123456789]中所有的好数之和:
1. 假设`2022`出现在最后四位,即我们要求类似于`xxxxx2022`结构的数,思考……