想踩缝纫机的回笼觉觉主G了
想踩缝纫机的回笼觉觉主G了
全部文章
分类
归档
标签
去牛客网
登录
/
注册
想踩缝纫机的回笼觉觉主G了的博客
全部文章
(共10篇)
题解 | ???
#include <iostream> using namespace std; int main() { int T; cin>>T; while(T--){ string s; string t; ...
2026-01-15
0
10
题解 | 细胞增殖
#include <bits/stdc++.h> using namespace std; long long power(int a, int b) { //计算a的b次方 long long result = 1; while (b > 0) { ...
2026-01-13
0
12
题解 | 小店的经营分析
#include <iostream> using namespace std; int main() { int N; cin>>N; int *P = new int [N]; int L; int R; int coun...
2026-01-12
0
22
题解 | 【模板】双指针
#include <bits/stdc++.h> using namespace std; class QuJ { public: int x, y; QuJ() { x = 0; y = 0; } }; int main() ...
2026-01-12
0
14
题解 | 【模板】滑动窗口
#include <iostream> using namespace std; int main() { int n, k; cin>>n>>k; int *a = new int [n]; for(int i = 0; i &...
2026-01-11
0
16
题解 | 迷宫问题
#include <bits/stdc++.h> using namespace std; class point { public: int x; int y; point() { x = 0; y = 0; } };...
2026-01-10
0
17
题解 | 购物单
#include <iostream> using namespace std; int max(int a, int b) { if (a > b) return a; return b; } int dp(int i, int n, int* v...
2026-01-07
0
14
题解 | 隐匿社交网络
#include <iostream> using namespace std; class set{ public: long long weight; int count; set(){ weight = 0; ...
2026-01-06
0
18
题解 | 坐标移动
#include <iostream> using namespace std; int main() { string str; cin >> str; int x = 0, y = 0;//初始坐标 for (int i = 0; i &...
2026-01-05
0
24
题解 | 字符串排序
#include <iostream> using namespace std; int main() { string str; getline(cin, str); for (int i = 0; i < str.length() - 1; ++i) ...
2026-01-04
0
23