ccl_aurora
ccl_aurora
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ccl_aurora的博客
全部文章
(共58篇)
题解 | 点到直线距离
#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
15
题解 | 学生综合评估系统
#include<bits/stdc++.h> using namespace std; // 定义学生结构体 struct Student{ int id; int academic_score; int activity_score; }; // 评估函数...
2026-02-14
0
14
题解 | 两点间距离
/** * struct Point { * int x; * int y; * Point(int xx, int yy) : x(xx), y(yy) {} * }; */ class Solution { public: /** * 代码中的类名、方法名、参数名已...
2026-02-13
0
12
题解 | 凯撒解密
#include<vector> class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 进行凯撒解密 * @param password string...
2026-02-11
0
11
题解 | 文
#include <iostream> #include<vector> #include<algorithm> #include<iomanip> using namespace std; class man{ public: string...
2026-02-08
0
17
题解 | 最大子数组和
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n; cin >> n; int...
2026-02-07
0
21
题解 | 矩阵的最小路径和
#include <iostream> #include<algorithm> #include<vector> using namespace std; int main() { int n,m; cin>>n>>m; ...
2026-02-07
0
19
题解 | 数字三角形
#include <iostream> #include<vector> #include<algorithm> using namespace std; int main() { int n; cin>>n; vector&...
2026-02-07
0
19
题解 | 【模板】整数域二分
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { ios::sync_with_stdio(false); ...
2026-02-07
0
23
题解 | 第一宇宙速度
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 计算星球的第一宇宙速度 # @param M double浮点型 星球的质量 # @param r double浮点型 星球的半径 # @return double浮点型 # import math G=6.6...
2026-02-05
0
21
首页
上一页
1
2
3
4
5
6
下一页
末页