yigu2468
yigu2468
全部文章
分类
归档
标签
去牛客网
登录
/
注册
yigu2468的博客
全部文章
(共47篇)
题解 | #点菜问题#
#include <iostream> using namespace std; const int MAXN = 101; const int MAXP = 1001; // dp数组在主函数外定义,元素自动初始化0 int dp[MAXP], v[MAXN], w[MAXN];...
2024-03-08
0
178
题解 | #点菜问题#
#include <iostream> using namespace std; const int MAXN = 101; const int MAXP = 1001; // dp数组在主函数外定义,元素自动初始化0 int dp[MAXN][MAXP], v[MAXN], w[...
2024-03-08
1
215
题解 | #八皇后#
#include <iostream> #include <string> #include <map> #include <vector> using namespace std; int lie[20]; int zheng[30]; int ...
2024-03-06
0
150
题解 | #八皇后#
#include <iostream> #include <string> #include <map> using namespace std; int res[20]; int lie[20]; int zheng[30]; int ni[30]; in...
2024-03-06
0
167
题解 | #计算表达式#
#include <iostream> #include <stack> using namespace std; bool isOp(char op){ if (op=='+' || op=='-' || op=='*' || op=='/' || op=='#...
2024-03-03
0
205
题解 | #简单计算器#
#include <iostream> #include <stack> using namespace std; bool isOp(char x){ if (x=='+' || x=='-' || x=='*' || x=='/' || x=='#'){ ...
2024-03-03
0
192
题解 | #浮点数加法#
#include <iostream> #include <string> #include <algorithm> using namespace std; void PaddingInteger(string &s, int num){ i...
2024-02-27
1
245
首页
上一页
1
2
3
4
5
下一页
末页