MaoPaoMiao
MaoPaoMiao
全部文章
分类
随笔(1)
归档
标签
去牛客网
登录
/
注册
MaoPaoMiao的博客
全部文章
(共3篇)
题解 | 字符串展开(最优雅版本)
#include <bits/stdc++.h> using namespace std; int main() { int p1, p2, p3; cin >> p1 >> p2 >> p3; string s; ci...
2026-01-14
1
12
题解 | 区间取反与区间数一
#include <bits/stdc++.h> using namespace std; template<typename S, S(*merge)(S, S), S(*element)(), typename F, S(*mapping)(F, S), F(*compose...
2025-12-24
1
29
题解 | 小猫排队
#include <bits/stdc++.h> using namespace std; signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >>...
2025-12-22
1
32