总之就是非常可爱
总之就是非常可爱
全部文章
分类
题解(177)
归档
标签
去牛客网
登录
/
注册
总之就是非常可爱的博客
全部文章
(共171篇)
题解 | #字符串的统计字符串#
//简单的题简单做 #include<bits/stdc++.h> using namespace std; int main(){ string str; cin>>str; char pr...
C++
2022-02-10
1
424
题解 | #判断两个字符串是否为变形词#
//简单的题简单做 //申请一个长度为256的数组,可以涵盖所有的字符就行 #include<bits/stdc++.h> using namespace std; int main(){ int n,m; cin>>n...
C++
2022-02-10
0
403
题解 | #跳跃游戏#
//本题实际上是一个小贪心 //无非就是当来到某一个位置时怎么选择接下来的跳法是最优的这么一个问题 //有以下几种可能 //1.能跳多远跳多远;这种无脑跳法肯定是错的,题目示例就过不去 //2.跳到可以跳的范围内最大的那个数上,这种跳法看似可以其实也不对比如:3 3 2 1 1 4,如果按这种跳法就...
C++
2022-02-10
1
378
题解 | #边界都是1的最大正方形大小#
//本题首先对矩阵进行预处理 //申请一个同样大小的预处理数组 //数组的每一个位置有两个变量一个代表从当前行由左到当前位置有多少连续1 //另一个代表从上到当前位置有多少个连续的1 #include<bits/stdc++.h> using namespace std; struct ...
C++
2022-02-09
0
388
题解 | #两个链表生成相加链表#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node * ...
C++
2022-02-09
0
431
题解 | #将单向链表按某值划分为左边小,中间相等,右边大的形式#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; int pivot; ...
C++
2022-02-09
0
535
题解 | #反转单向链表#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; struct double...
C++
2022-02-09
0
505
题解 | #机器人达到指定位置方法数#
//根据左边的暴力递归改出动态规划的版本 #include<bits/stdc++.h> using namespace std; int main(){ int N,M,K,P; cin>>N>>M>...
C++
2022-02-09
0
367
题解 | #在链表中删除指定值的节点#
# include <bits/stdc++.h> using namespace std; struct list_node{ int val; struct list_node * next; }; list_node * ...
C++
2022-02-09
0
427
题解 | #用一个栈实现另一个栈的排序#
#include<bits/stdc++.h> using namespace std; stack<int> S1,S2; int main(){ int N; cin>>N; ...
C++
2022-02-08
3
362
首页
上一页
8
9
10
11
12
13
14
15
16
17
下一页
末页