简单题解,一看就懂! 摘要: 由题目可推导出要达到满分要做两件事: (1):从“求出整个序列中第k大的数字减去第k小的数字的值m”我们可以知道我们应该先对该输入序列做一个排序,而快排是最好的选择,因此我们可以这么做: …… 题解列表 2022年07月27日 0 点赞 0 评论 147 浏览 评分:0.0
C# 1268: 第K极值 摘要:```cpp #include using namespace std; int n,k,a[10005]; int m; bool fun(int x){ int j=0; if …… 题解列表 2022年08月04日 0 点赞 0 评论 179 浏览 评分:0.0
C语言最简单代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int sum(int n){//判断质数 int i; int h=0; for(i=2;i<n;i…… 题解列表 2022年10月08日 0 点赞 0 评论 166 浏览 评分:0.0
优质题解 第k极值(C/C++)+ 常见误区 摘要:解题思路: 题前小磕:这一题一看题目就非常简单,但是为什么我还要写这个题解呢?这个代码改了好久....因为淋过雨,所以要帮你们撑伞!!!(好久没有写题解了,更新一…… 题解列表 2022年11月18日 0 点赞 0 评论 542 浏览 评分:9.9
1268题解,有一个时间太长不是完全正确的 摘要:参考代码:n,k=map(int,input().split())X=list(map(int,input().split()))X.sort()number=X[n-k]-X[k-1]number_…… 题解列表 2022年11月22日 0 点赞 0 评论 65 浏览 评分:0.0
1268: 第K极值 摘要:参考代码:#include<stdio.h> #include<stdlib.h> int cmp(const void *a,const void *b){ return *(int *)a…… 题解列表 2023年02月16日 0 点赞 0 评论 161 浏览 评分:9.9
1268: 第K极值 摘要:```cpp #include using namespace std; const int maxn=10001; int n,k,arr[maxn],ans; string is_pre…… 题解列表 2023年03月14日 0 点赞 0 评论 117 浏览 评分:9.9
第K极值(python) 摘要:解题思路:注意事项:参考代码:def is_prime(num): if num <= 1: return False for i in range(2, int(num *…… 题解列表 2023年12月18日 0 点赞 0 评论 75 浏览 评分:0.0
c代码记录之第k极值--水题 摘要:排序,注意m为负的情况 ```c #include int main() { int n,k,m,i,j,temp; scanf("%d%d",&n,&k); i…… 题解列表 2024年01月09日 0 点赞 0 评论 108 浏览 评分:0.0
sort排序,c++ 摘要:解题思路:用sort排序解题注意事项: 注意但m<2时,不能进入for循环判断,会默认为质数参考代码:#include<iostream>#include <algorithm>using names…… 题解列表 2024年01月30日 0 点赞 0 评论 99 浏览 评分:0.0