Coming680
Coming680
全部文章
分类
题解(105)
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
(共105篇)
题解 | #二叉树中的最大路径和#
#include<iostream> #include<vector> #include<cstring> #include<algorithm> using namespace std; int node[100001],dp[100001]; ve...
C++
2022-03-02
0
495
题解 | #矩阵的最小路径和#
#include<iostream> using namespace std; int graph[501][501],dp[501][501]; int main() { ios::sync_with_stdio(false); cin.tie(0); int ...
C++
2022-03-02
0
407
题解 | #跳台阶扩展问题#
解法一,动态规划解决 /** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : val(x), next(nullptr) {} * }; */ int num[100000] = {0...
C++
2022-03-01
0
404
题解 | #跳台阶扩展问题#
#include<iostream> using namespace std; int main() { int dp[41] = {0},n,sum = 0; cin >> n; dp[1] = 1; dp[2] = 2; for(i...
C++
2022-03-01
0
358
题解 | #打牌#
简单粗暴解法c++ #include<iostream> #include<map> #include<set> using namespace std; int main() { ios::sync_with_stdio(false); cin....
C++
2022-03-01
2
412
题解 | #树查找#
#include<iostream> #include<algorithm> #include<cstring> #include<cmath> using namespace std; int num[1001]; //void dfs(int i,...
C++
2022-03-01
0
355
题解 | #查找#
#include<iostream> #include<algorithm> using namespace std; int main() { string str, temp, a, b, c; int n, kind, i, len; while...
C++
2022-03-01
0
365
题解 | #数字阶梯求和#
最容易想到的最直接办法 #include<iostream> #include<algorithm> #include<string> using namespace std; int main() { &nb...
C++
2022-02-14
0
469
题解 | #a+b#
#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { string a, b, ans; while (cin >&...
C++
2022-02-14
0
494
题解 | #采药#
大部分牛客都使用优化后的二维化一维数组,此处提供最原始二维存储方案(当然优化后存储空间更低) #include<iostream> using namespace std; int main() { int t,m; cin >> t >> m; ...
C++
2022-02-12
5
528
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页