题解 1268: 第K极值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1268: 第K极值

摘要:```cpp #include using namespace std; const int maxn=10001; int n,k,arr[maxn],ans; string is_pre……
优质题解

第k极值(C/C++)+ 常见误区

摘要:解题思路:                    题前小磕:这一题一看题目就非常简单,但是为什么我还要写这个题解呢?这个代码改了好久....因为淋过雨,所以要帮你们撑伞!!!(好久没有写题解了,更新一……
优质题解

P1001-题解(C++ && Python 代码)思路最重要

摘要:### **思路重要(过后python再解答一波)** 一拿到题目,首先得到两个信息 1. 需要进行质数判断 2. 需要找到第K大的数字 根据这两点,我首先自己撸了一个函数求解质数,*最朴……

P1001-题解(C++代码)

摘要:这题的要求有两个,第一:得到这个序列中的第k大的数和第k小的数,第二:判断二者之差是不是质数。 第一个要求,我直接用排序解决,第二个自己写了个函数解决。 代码里面有详细的注释。 #i……

P1001 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int M=10000;int a[M]={……

P1001 (C++代码)

摘要:题目链接:http://www.dotcpp.com/oj/problem.php?id=1268 解题思路:首先,对这组数据进行从小到大排序,拍好后,第k大的数字是a[n-k],可以推一下,第一大是……

P1001C++排序+素数

摘要:解题思路:就一个排序(直接使用sort即可)和判定素数注意事项:参考代码:#include <iostream>#include <string>#include <algorithm>using n……

P1001 (C++代码)

摘要:解题思路: 用sort函数先排序,然后求出第k大的数字减去第k小的数字的值m,再判断m是否是素数即可。参考代码:#include <bits/stdc++.h> using  namespace  ……

C# 1268: 第K极值

摘要:```cpp #include using namespace std; int n,k,a[10005]; int m; bool fun(int x){ int j=0; if ……