rainman_
rainman_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
rainman_的博客
全部文章
(共127篇)
题解 | #互换最大最小数#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-21
0
252
题解 | #放苹果#
#include <iostream> using namespace std; /* m 个苹果 n 个盘子 */ int ways(int m, int n) { if (m == 0) { //苹果没了,这是一种方法 return 1; ...
2023-03-21
0
278
题解 | #10进制 VS 2进制#思路清晰,过程复杂
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-21
0
324
题解 | #递推数列#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-21
0
251
题解 | #整数拆分#完全背包问题
#include <iostream> using namespace std; int dp[1000001]; int main() { int m; while (scanf("%d", &m) != EOF) { // 注意 while 处理多个 case ...
2023-03-20
0
308
题解 | #最小邮票数#
#include <iostream> #include <vector> using namespace std; int stamp[21]; int minstamp = 500; int n; /* index 当前到了第几个邮票 count 当前...
2023-03-20
0
256
题解 | #乘积为正数的最长连续子数组//太绕了
#include <iostream> using namespace std; int main() { int n; while (cin >> n) { // 注意 while 处理多个 case //同时保存最长负值数组与最长正值数组...
2023-03-20
0
322
题解 | #连续子数组的最大乘积#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-20
0
285
题解 | #最小花费爬楼梯#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-20
0
270
题解 | #跳台阶扩展问题#
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <stack> #include <map> #incl...
2023-03-20
0
279
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页