仰泳鲈鱼很想堆雪人
仰泳鲈鱼很想堆雪人
全部文章
分类
归档
标签
去牛客网
登录
/
注册
仰泳鲈鱼很想堆雪人的博客
全部文章
(共19篇)
题解 | 吐泡泡
#include <iostream> #include <stack> using namespace std; string processBubbles(const string& input) { stack<char> st; ...
2025-09-20
0
32
题解 | 好串
#include <iostream> #include <stack> using namespace std; int main() { //类比为括号匹配问题 stack<char> s; char y; bool z = ...
2025-09-19
0
27
题解 | 两直线交点
#include<bits/stdc++.h> using namespace std; struct point{ double x,y; point(double A,double B){ x=A,y=B; } point() = d...
2025-09-16
0
46
题解 | 最厉害的学生
#include <iostream> using namespace std; struct Person { string s; int c1, c2, c3, t; // 构造函数初始化 Person(string name = &quo...
2025-09-16
0
49
题解 | 牛牛的考试
#include <iostream> #include <string> using namespace std; int main() { int t; cin >> t; char answer[500]; for (int...
2025-09-13
0
54
题解 | BFS
#include <iostream> using namespace std; int main() { string s; cin >> s; int len = s.size(); int y = -1; string z = ...
2025-09-07
0
43
题解 | 扫雷
#include <iostream> using namespace std; int main() { int n, m; cin >> n >> m; int arr[2000][2000] = { 0 }; int arr...
2025-09-06
0
43
题解 | 校门外的树
#include <iostream> using namespace std; int main() { int l, m, li, ri; cin >> l >> m; int arr[10001] = { 0 }; whil...
2025-09-06
0
35
题解 | 约瑟夫环
#include <iostream> using namespace std; int main() { int n, k, m; cin >> n >> k >> m; m -= 1; int arr[100] =...
2025-09-06
0
37
首页
上一页
1
2
下一页
末页