coder0xe
coder0xe
全部文章
分类
归档
标签
去牛客网
登录
/
注册
coder0xe的博客
全部文章
(共2篇)
题解 | Pre-Post
#include <bits/stdc++.h> using namespace std; #define int long long string pre, pos; // s1和s2长度均为k 用前k个小写字母 即每个字母在字符串中只出现一次 int rec1[26]; // 记录...
2026-03-23
0
20
题解 | 整除问题
#include <bits/stdc++.h> using namespace std; int n, a; map<int, int> reca; map<int, int> recn; int main() { // 打印素数表 欧拉筛 打印到1...
2026-03-10
0
32