1268: 第K极值 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; bool f(int x){ // 如果x小于等于1,则不是素数 …… 题解列表 2024年12月09日 0 点赞 0 评论 51 浏览 评分:0.0
第k极值(C语言) 摘要:解题思路:1. cmp 函数: 这是一个用于比较两个整数大小的比较函数,用于 qsort 函数进行快速排序。它返回两个指针所指向的整数的差值,用于确定排序的顺序。2. f 函数:用于判断一…… 题解列表 2024年12月08日 0 点赞 0 评论 44 浏览 评分:0.0
sort排序,c++ 摘要:解题思路:用sort排序解题注意事项: 注意但m<2时,不能进入for循环判断,会默认为质数参考代码:#include<iostream>#include <algorithm>using names…… 题解列表 2024年01月30日 0 点赞 0 评论 98 浏览 评分: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 评论 107 浏览 评分:0.0
第K极值(python) 摘要:解题思路:注意事项:参考代码:def is_prime(num): if num <= 1: return False for i in range(2, int(num *…… 题解列表 2023年12月18日 0 点赞 0 评论 73 浏览 评分:0.0
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 评论 116 浏览 评分:9.9
1268: 第K极值 摘要:参考代码:#include<stdio.h> #include<stdlib.h> int cmp(const void *a,const void *b){ return *(int *)a…… 题解列表 2023年02月16日 0 点赞 0 评论 160 浏览 评分: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 评论 64 浏览 评分:0.0
优质题解 第k极值(C/C++)+ 常见误区 摘要:解题思路: 题前小磕:这一题一看题目就非常简单,但是为什么我还要写这个题解呢?这个代码改了好久....因为淋过雨,所以要帮你们撑伞!!!(好久没有写题解了,更新一…… 题解列表 2022年11月18日 0 点赞 0 评论 542 浏览 评分:9.9
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 评论 165 浏览 评分:0.0