宁静的冬日
宁静的冬日
全部文章
分类
python学习(4)
代码笔记(4)
题解(83)
归档
标签
去牛客网
登录
/
注册
宁静的冬日的博客
全部文章
(共91篇)
题解 | #数制转换#
#include<iostream> using namespace std; #include<algorithm> #include<cstring> #include<iomanip> #include<string> int a[1...
C++
2022-03-09
0
430
题解 | #采药#
#include<iostream> using namespace std; #include<algorithm> #include<cstring> class Herb { public: int time; int price; }; Herb a[...
C++
2022-03-08
0
316
题解 | #放苹果#
先写递归,然后再用dp简化复杂度,这样思路更清晰 #include<iostream> #include<algorithm> #include<cstring> using namespace std; #define MAX 1024; int dp[32][...
C++
2022-03-08
0
398
题解 | #拦截导弹#
#include<iostream> #include<algorithm> using namespace std; int a[100]; int dp[1024]; //第一次拦截的是i号导弹,最多能拦截的导弹数 int f(int i, int n) { if (i...
C++
2022-03-08
0
398
【C++】递归求最大素因子的一段代码
利用递归求,今天灵感一来写了一段,结果通过了,但是我自己其实不是很理解这段代码哈哈哈 思想是不断分割出因子,找出大的返回,不过怎么能确定返回的因子一定是素数呢,我不理解哈哈 //获取最大素数因子 int get_prime_factor(int a) { //cout << "执行" ...
C++
2022-03-08
0
426
【C++】递归求最大素因子的一段代码
利用递归求,今天灵感一来写了一段,结果通过了,但是我自己其实不是很理解这段代码哈哈哈 思想是不断分割出因子,找出大的返回,不过怎么能确定返回的因子一定是素数呢,我不理解哈哈 //获取最大素数因子 int get_prime_factor(int a) { //cout << "执行" ...
2022-03-08
0
459
题解 | #Problem C#
采用递归思路获取 最大质数因子 #include<iostream> #include<math.h> #include<algorithm> #include<string> #include<iomanip> #define MAX ...
C++
2022-03-08
1
427
题解 | #浮点数加法#
#include<iostream> using namespace std; #include<string> #include<algorithm> //整数部分 string stradd(string p1, string p2, string q1,st...
C++
2022-03-07
0
319
题解 | #奇偶校验#
#include<iostream> using namespace std; #include<string> #include<algorithm> //转成二进制 string trans(int n) { if (n == 0)return "0"; ...
C++
2022-03-07
0
398
题解 | #子串计算#
#include<iostream> using namespace std; #include<string> #include<map> int main() { string s; cin >> s; map<string, int&g...
C++
2022-03-07
5
372
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页