摘要: 先sort进行排序,然后输出第k大的元素即可 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n, k; int arr[10005]; int main() { scanf(" 阅读全文
posted @ 2022-09-03 02:25 白缺 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 先sort排序,在输出最小的k个数。 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n, k; int arr[10005]; int main() { scanf("%d % 阅读全文
posted @ 2022-09-03 02:19 白缺 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 求最大子序列和: 如果前面的序列为正数,后面紧接着出现一个最大子序列,那这个最大子序列加上一个相邻的正数数列才会是最大子序列。 要注意如果全为负数,那么最小的那个负数就是最大的子序列和 #include<iostream> #include<bits/stdc++.h> #include<cstdi 阅读全文
posted @ 2022-09-02 14:39 白缺 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 都保证了有一个多数了,那就变成了求最多出现的那个数,因为数组中只有可能有一个多数。 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n; int a[10005]={0}; in 阅读全文
posted @ 2022-09-02 14:13 白缺 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 需要注意的: scanf()的返回值是 EOF,输入结束 通过指针指向左右子树的二叉树构建 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; struct node { int data; 阅读全文
posted @ 2022-09-01 23:46 白缺 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 好像旋转矩阵有更好的做法,但是我觉得这样也足够了,如果需要更好的做法,大家得自己在去找一下。 我主要是找了下规律,然后做出来的 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n 阅读全文
posted @ 2022-08-31 13:12 白缺 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 多开个数组存次数,没啥好说的 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n; int num[1005]; int ant[1005]; int main() { cin 阅读全文
posted @ 2022-08-31 12:27 白缺 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 因为题目给的是不同的整数,所以就排序,然后for遍历找出差值为1的就好了 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n; int num[1005]; int main() 阅读全文
posted @ 2022-08-30 14:07 白缺 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 简单题目,没啥好说 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int A[258]={0}; int n, m, L; int main() { cin >> n >> m >> 阅读全文
posted @ 2022-08-30 13:47 白缺 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 使用 结构体 struct + 自定义 sort轻松搞定 #include<iostream> #include<bits/stdc++.h> #include<cstdio> using namespace std; int n, X, Y; struct point { int i; int d 阅读全文
posted @ 2022-08-29 19:08 白缺 阅读(67) 评论(0) 推荐(0) 编辑