牛客484507354号
牛客484507354号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客484507354号的博客
全部文章
(共5篇)
题解 | Graduate Admission
具体解题方法在这可以看看https://mp.weixin.qq.com/s/QhKeHEeB9bQNyP1osa9Y7A #include <iostream> #include <vector> #include <algorithm> using names...
2026-01-15
0
13
题解 | Head of a Gang
详细题解在https://mp.weixin.qq.com/s/PK4gWeV4rvuixrPZ_hFQ0w #include <iostream> #include <string> #include <vector> #include <map> ...
2026-01-09
0
12
题解 | 平方和
#include <iostream> using namespace std; const int N = 1010; int main() { string s; cin >> s; int sum = 0; for(char i : ...
2025-12-25
0
21
题解 | 划分子集
详细解析可见https://mp.weixin.qq.com/s/Jhazg56d_7umBdRR-k0_rA #include <iostream> using namespace std; const int N = 10010; int p[N], num[N]; int f...
2025-12-24
0
17
题解 | 考试招生
#include <iostream> #include <algorithm> #include <cstring> using namespace std; const int N = 1005; const int M = 105; struct Stu...
2025-12-24
1
20