P1001-题解(C++代码) 摘要:这个题分为两个部分 部分一 先对数组进行排序 找到第k大和第k小 并且计算其差值m 部分二 对m进行素数判定 是的话返回true 否则返回false 最后按照题目条件输出即可 …… 题解列表 2019年08月29日 0 点赞 0 评论 353 浏览 评分:0.0
P1001 (C++代码)水一下 摘要:解题思路: 又水了一发啊参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.…… 题解列表 2019年04月17日 0 点赞 0 评论 238 浏览 评分:0.0
P1001 (C++代码) 摘要:解题思路: 用sort函数先排序,然后求出第k大的数字减去第k小的数字的值m,再判断m是否是素数即可。参考代码:#include <bits/stdc++.h> using namespace …… 题解列表 2018年12月01日 0 点赞 0 评论 375 浏览 评分:0.0
P1001 (C++代码) 摘要:解题思路:首先将序列排序,然后直接利用向量(数组)找出第K大(第K小)的下标,在判断是否为素数就可以了。参考代码:#include<bits/stdc++.h> using namespace st…… 题解列表 2018年10月28日 0 点赞 0 评论 476 浏览 评分:0.0
P1001 (C++代码) 摘要:题目链接:http://www.dotcpp.com/oj/problem.php?id=1268 解题思路:首先,对这组数据进行从小到大排序,拍好后,第k大的数字是a[n-k],可以推一下,第一大是…… 题解列表 2018年07月02日 0 点赞 0 评论 678 浏览 评分:0.0
P1001 (C++代码) 摘要:#include <iostream> #include <vector> #include <stack> #include <queue> #include <cstdlib> #inc…… 题解列表 2018年03月29日 0 点赞 0 评论 535 浏览 评分:0.0
P1001 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int M=10000;int a[M]={…… 题解列表 2017年08月01日 0 点赞 0 评论 884 浏览 评分:6.0