Coming680
Coming680
全部文章
分类
题解(105)
归档
标签
去牛客网
登录
/
注册
德林恩宝的牛客博客
CSDN访问链接baolin.blog.csdn.net
全部文章
(共105篇)
题解 | #最大上升子序列和#
#include<iostream> using namespace std; int main() { int k,ans = 0; int height[1000]{0},dp[1000]; cin >> k; for(int i = 0;...
C++
2022-02-12
0
383
题解 | #拦截导弹#
#include<iostream> using namespace std; int main() { int k,ans = 0; int height[25]{0},dp[25]; cin >> k; for(int i = 0;i &l...
C++
2022-02-12
1
419
题解 | #最大子矩阵#
#include<iostream> #include<algorithm> using namespace std; int graph[100][100]; int total[100][100]; int dp[100]; int arr[100]; int MaxS(...
C++
2022-02-12
0
480
题解 | #还是畅通工程#
easy的题目当然要easy的解 #include<iostream> #include<map> #include<vector> #include<algorithm> using namespace std; int find(map<in...
C++
2022-02-11
0
393
题解 | #第一题#
并查集简单运用 #include<iostream> #include<map> using namespace std; map<int,int> mp; int find(int x){ if(x != mp[x]) return mp...
C++
2022-02-11
6
457
题解 | #找出直系亲属#
#include<iostream> #include<map> using namespace std; typedef map<char, pair<char, char>> MyMap; bool answer = false; int ccnt...
C++
2022-02-11
0
480
题解 | #Is It A Tree?#
#include<iostream> #include<map> using namespace std; int main() { int s, e, ss = 0, cnt; bool ans = true; map<int, int>...
C++
2022-02-11
0
393
题解 | #搬水果#
优先队列简单运用 #include<iostream> #include<queue> using namespace std; int main() { int n,num; priority_queue<int,vector<int>,g...
C++
2022-02-10
0
475
题解 | #查找第K小数#
最直接且有效的方法 #include<iostream> #include<set> #include<algorithm> using namespace std; int main() { int n,k; while(cin >>...
C++
2022-02-10
3
495
题解 | #复数集合#
#include<iostream> #include<queue> using namespace std; struct cmp { bool operator ()(const pair<int, int> a, const pair<int,...
C++
2022-02-10
0
366
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页