xhhmll
xhhmll
全部文章
分类
归档
标签
去牛客网
登录
/
注册
xhhmll的博客
全部文章
(共2篇)
题解 | 小红的三带一
#include <iostream> #include <algorithm> using namespace std; //这题容易想到排序 const int N = 2e5 + 10; int a[N]; bool isthreeone(int a, int ...
2026-01-02
0
17
题解 | 小红的不动点分配
#include <iostream> #include <vector> using namespace std; /*由于读入多个相同的数中,最多两个起作用, 给读入的数打上标记,再跟2比较进行统计就好了 */ int main() { int n; cin ...
2026-01-02
0
12