ccl_aurora
ccl_aurora
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ccl_aurora的博客
全部文章
(共61篇)
题解 | 宵暗的妖怪
#include <iostream> #include<algorithm> #include<vector> #define ll long long using namespace std; int main() { ll n; cin &...
2026-04-23
0
7
题解 | 不相邻取数
#include <iostream> #include<vector> #include<algorithm> using namespace std; #define ll long long int main() { ll n,i; cin&...
2026-04-23
0
5
题解 | 括号配对问题
#include<iostream> #include<stack> using namespace std; bool test(char a, char b){ if(a=='('&&b==')')return true; if(a==...
2026-04-09
0
25
题解 | 点到直线距离
#include <bits/stdc++.h> using namespace std; struct point{ double x,y; point(double A,double B){ x=A,y=B; } point() = ...
2026-02-15
0
59
题解 | 学生综合评估系统
#include<bits/stdc++.h> using namespace std; // 定义学生结构体 struct Student{ int id; int academic_score; int activity_score; }; // 评估函数...
2026-02-14
0
60
题解 | 两点间距离
/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已...
2026-02-13
0
61
题解 | 凯撒解密
#include<vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 进行凯撒解密 * @param password string...
2026-02-11
0
55
题解 | 文
#include <iostream> #include<vector> #include<algorithm> #include<iomanip> using namespace std; class man{ public: string...
2026-02-08
0
59
题解 | 最大子数组和
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; int...
2026-02-07
0
64
题解 | 矩阵的最小路径和
#include <iostream> #include<algorithm> #include<vector> using namespace std; int main() { int n,m; cin>>n>>m; ...
2026-02-07
0
68
首页
上一页
1
2
3
4
5
6
7
下一页
末页