番禺小韭菜
番禺小韭菜
全部文章
分类
归档
标签
去牛客网
登录
/
注册
番禺小韭菜的博客
全部文章
(共93篇)
题解 | 小红的01子序列构造(easy)
#include <bits/stdc++.h> using namespace std; typedef long long LL; int main() { LL n, k; cin >> n >> k; string s; ...
2025-03-04
0
28
题解 | 小红的排列构造
#include <iostream> #include <string> #include <vector> using namespace std; int main() { int n; string s; cin >>...
2025-03-04
1
29
题解 | 变化的数组
#include<bits/stdc++.h> #define ll long long #define MO 1000000007ll #define MXN 1000002 using namespace std; inline void rd(ll& x) { x ...
2025-03-04
0
32
题解 | 小红的区间构造
#include <cstdint> #include <iostream> using namespace std; int main() { uintmax_t n, k, x; cin >> n >> k >> x;...
2025-03-04
1
34
题解 | 三角谜题
#include <bits/stdc++.h> using namespace std; typedef long long LL; const LL INF = 0x3f3f3f3f3f3f3f3f; const int N = 1e6 + 10; map<int, int&...
2025-03-04
1
36
题解 | 气球谜题
#include <algorithm> #include <climits> #include <iostream> #include <vector> using namespace std; int main() { int n; ...
2025-03-03
0
42
题解 | 宝石手串
#include <iostream> #include <unordered_map> #include <algorithm> #include <vector> using namespace std; int main() { int...
2025-03-03
0
27
题解 | 研究red子序列的红
#include <bits/stdc++.h> using namespace std; using ll = long long; #define int ll const int MAXN = 2e5 + 5; #define ls(p) (p << 1) #def...
2025-03-03
0
26
题解 | 最小循环节
#include <iostream> #include <unordered_map> using namespace std; int main() { string str; getline(cin, str); unordered_map&l...
2025-03-03
0
30
题解 | 求最小公倍数
#include <iostream> using namespace std; int gcd(int a, int b){ return b==0?a:gcd(b,a%b); } int main() { int a, b; while(cin >&...
2025-03-03
0
31
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页