牛客7777779号
牛客7777779号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客7777779号的博客
全部文章
(共86篇)
题解 | #查找第K小数#
#include <iostream> using namespace std; #define N 1000 //冒泡排序 void Mysort(int a[],int n){ int i,j; for (i = 0;i<n-1;i++){ int flag = 1;...
2023-03-17
0
288
题解 | #矩阵最大值#
#include<limits.h> int型无穷小表示INT_MIN注意!每次判断完本层最大值以及累和之后,要记得重置 #include <iostream> using namespace std; #include<limits.h> #define N 1...
2023-03-17
0
277
题解 | #排序#
就是排序问题我写的是冒泡 #include <iostream> using namespace std; #define N 101 int main(){ int n; while(cin >> n){ int a[N]; for (int i = 0; i...
2023-03-17
0
262
题解 | #众数#
#include <iostream> using namespace std; int main(){ int a[21] = {0}; int i,temp; //输入 存储在a数组中,以下标为权值,a[i]中存储的元素值为i权值出现的次数 for (i = 1; i &l...
2023-03-17
0
356
题解 | #N阶楼梯上楼问题#
不同顺序也算一种,eg:1,1,2;1,2,1;2,1,1;算三种。创建状态数组dp[N],存储N阶楼梯上楼的方案,其中下标0舍弃,方便使用。 #include <iostream> using namespace std; #define N 90 int main(){ int...
2023-03-17
0
277
题解 | #素数#
#include <iostream> using namespace std; #include<math.h> int main(){ int n; while(cin >>n){ int j; for (int i = 11;i<n;i+...
2023-03-17
0
302
题解 | #还是A+B#
循环得到后k位的数值(可能a b没有k位那么长,只能得到a b间最小位数) #include <iostream> using namespace std; //k的含义是:a b的末尾k位是否相同,而不是个位是否相同 int main(){ int a,b; while(cin ...
2023-03-17
0
275
题解 | #a+b#
#include <iostream> using namespace std; int main(){ int a,b; while (cin >>a>>b){ cout <<a+b<<endl; } }
2023-03-17
0
337
题解 | KY109
#include <iostream> using namespace std; #define N 10000 struct s{ string str; }; int main(){ int n; while(cin >>n){ int i; struct ...
2023-03-17
0
310
题解 | #Integer Inquiry#
注意数组大小要给够,不然测试用例会失败 #include <iostream> using namespace std; int main(){ string str; int s[103] = {0}; int i,j; while (cin >>str ...
2023-03-16
0
349
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页