勋谦
勋谦
全部文章
分类
归档
标签
去牛客网
登录
/
注册
勋谦的博客
全部文章
(共77篇)
题解 | #学分绩点#
#include <iostream> using namespace std; const int N = 20; double xuefen[N]; double defen[N]; double jidian(double x){ if(x >= 90 &&a...
2024-06-27
0
165
题解 | #打印极值点下标#数学极值
就是模拟题,题目意思一开始没怎么看明白,就是数学中的极值定义 #include <iostream> #include <math.h> #include <algorithm> using namespace std; const int N = 1e5 +...
2024-06-27
0
131
题解 | #Skew数# 简洁易懂
本来以为要用到高精度,因为数很大,结果long long也就过了 #include <iostream> #include <string> #include <algorithm> #include <math.h> using namespace...
2024-06-27
0
142
题解 | #吃糖果#dp + bfs
本题可以使用动态规划dp加bfs实现,其实可以在草稿纸上罗列出情况,就可以发现出其中的规律了 动态规划dp #include <iostream> using namespace std; const int N = 1e5 + 10; int dp[N]; int conver...
2024-06-27
0
120
题解 | #二叉树#数学题
#include <iostream> using namespace std; int main(){ int x,y; while(cin >> x >> y){ while(x != y){ if(x > y)x = x /2; ...
2024-06-27
0
145
题解 | #单词替换#简洁版
#include <iostream> #include <string.h> #include <algorithm> using namespace std; int main() { string s, a, b; getline(cin...
2024-06-27
0
123
题解 | #全排列#DFS实现
#include <iostream> #include <string> #include <algorithm> using namespace std; const int N = 100; bool visited[N]; char seq[N];...
2024-06-27
0
124
题解 | #最简真分数#
#include <iostream> #include <algorithm> using namespace std; const int N = 1000; int gcdx(int a,int b){ return b ? gcdx(b,a % b):a; }...
2024-06-26
0
161
题解 | #中位数#
#include <iostream> #include <algorithm> using namespace std; const int N = 1e5 + 10; int main(){ int n; while(cin >> n){ if...
2024-06-26
0
152
题解 | #日志排序#
#include <iostream> #include <algorithm> #include <sstream> using namespace std; const int N = 10010; struct record{ string name...
2024-06-26
0
142
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页