Luka_2001
Luka_2001
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Luka_2001的博客
全部文章
(共17篇)
题解 | #寻找大富翁# 贴一个优先队列
#include <iostream> #include<queue> using namespace std; int main() { int n,m; while(cin>>n>>m){ if(!n &&...
2024-03-02
0
190
题解 | #整型存储# 按要求定义了一个类
#include <iostream> #include<vector> #include<algorithm> using namespace std; class solution{ public: vector<pair<int,int...
2024-02-29
0
191
#计算表达式# 其实只需要分两种情况,不需要加额外运算符
#include <iostream> #include<stack> #include<string> using namespace std; double operation(double x, double y, char op) { //计算,注意结果...
2024-02-19
0
245
题解 | #二叉排序树# 还真是二叉链表
#include <iostream> using namespace std; typedef struct Treenode { struct Treenode* left; struct Treenode* right; int val; }*Tree; ...
2024-02-18
0
188
题解 | #八皇后# DFS清晰注解
#include <iostream> #include<vector> using namespace std; vector<int>res; vector<vector<int>>board(8,vector<int>(8...
2024-02-18
0
162
题解 | #最大上升子序列和#
#include <iostream> using namespace std; int main() { int n; while(cin>>n){ int *dp=(int *)malloc(sizeof(int)*n); ...
2024-02-17
0
197
题解 | #Fibonacci# 记录访问过的数
#include <iostream> #include<vector> using namespace std; vector<int>fibonacci(31,-1); int fibo(int n){ if (n==0) return 0; ...
2024-02-17
0
170
题解 | #找位置# map+vector
#include <iostream> #include<map> #include<vector> using namespace std; int main() { string str; while(cin>>str){ ...
2024-02-17
0
189
题解 | #邮票# 进行一个穷的举
#include <iostream> #include<set> using namespace std; int main() { set<int>s; for(int i=0;i<=5;++i){ for(int j=...
2024-02-16
0
226
题解 | #最小邮票数# 容易理解的背包问题
#include <iostream> #include<vector> #include<algorithm> using namespace std; int main() { int m,n; while(cin>>m>&g...
2024-02-16
0
196
首页
上一页
1
2
下一页
末页