腌萝卜干
腌萝卜干
全部文章
分类
未归档(199)
题解(7)
归档
标签
去牛客网
登录
/
注册
腌萝卜干的博客
全部文章
(共6篇)
AtCoder Beginner Contest 453 (A ~ E)题解
A 语法 字符串只能操作back, 可以将字符串操作后恢复 #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() #define vec1(T, name...
C++
C
哈希表
数学
深度优先搜索
字符串
动态规划
广度优先搜索
2026-04-12
0
39
ABC 452和每日一题的双指针解法
A #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() #define vec1(T, name, n, val) vector<T> na...
C++
C
2026-04-05
1
39
AtCoder Beginner Contest 451 题解
A 注意别把是否违法搞反, 直接模拟即可 #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() #define vec1(T, name, n, val)...
C++
C
2026-03-29
1
64
题解 | #Nowcoder Weekly Contest#
A 直接模拟即可 #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() using namespace std; using i128 = __int12...
C++
C
字符串
贪心
动态规划
哈希表
数组
2026-03-09
1
45
AtCoder Beginner Contest 448 题解
A 直接模拟即可 #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() using namespace std; using i128 = __int1...
C++
C
2026-03-08
3
69
牛客周赛126题解
A 分类讨论即可 #include <bits/stdc++.h> #define x first #define y second #define all(x) x.begin(), x.end() using namespace std; using i128 = __int1...
C++
C
字符串
数学
哈希表
动态规划
深度优先搜索
2026-03-07
0
46