The Kth great number 摘要:#include <bits/stdc++.h>#define debuga(v, i) cout << #v << "[" << i << "]" << " = " << v[i] << '…… 题解列表 2024年11月17日 0 点赞 0 评论 40 浏览 评分:0.0
最后一个点卡数组小于k和多组数据 摘要:#include<bits/stdc++.h> using namespace std; int main() { int t,k; while(cin>>t>>k) …… 题解列表 2024年08月09日 0 点赞 0 评论 51 浏览 评分:0.0
C++ STL multiset从小到大保存最大的k个数 摘要:解题思路:使用STL multiset从小到大保存最大的k个数,那么第一个数就是第k个最大数注意事项:数字可以重复,所以不能用set参考代码:#include<iostream> #include<…… 题解列表 2024年05月05日 0 点赞 0 评论 119 浏览 评分:0.0
编写题解 2066: [STL训练]第36届ACM亚洲区大连站网络赛The kth great number 摘要:解题思路:注意事项:参考代码:int sort(int ar[], int i, int n){ for (int c = 0; c < i; c++) { for (int…… 题解列表 2024年03月25日 0 点赞 0 评论 148 浏览 评分:9.9
2066: [STL训练]第36届ACM亚洲区大连站网络赛The kth great number(注意人数不足k个的时候怎么处理) 摘要:解题思路:注意事项:注意不满k个的时候,输出最大的参考代码:#include<iostream>#include<set>using namespace std;int main(void){ int…… 题解列表 2022年08月23日 0 点赞 0 评论 152 浏览 评分:9.9
第36届ACM亚洲区大连站网络赛The kth great number (Java代码) 摘要:import java.util.ArrayList; import java.util.Scanner; public class Main { public static voi…… 题解列表 2022年06月13日 0 点赞 0 评论 138 浏览 评分:0.0
The kth great number 摘要:####本题中要求输入一组数据中第k大的数 ####具体代码如下: ```java import java.util.ArrayList; import java.util.Arrays; …… 题解列表 2022年03月09日 0 点赞 0 评论 221 浏览 评分:9.9
Hifipsysta-2066-[STL训练]第36届ACM亚洲区大连站网络赛The kth great number(C++代码) 摘要: ```cpp #include #include #include using namespace std; int main(){ vector myvect; …… 题解列表 2022年02月10日 0 点赞 0 评论 120 浏览 评分:9.9
[STL训练]第36届ACM亚洲区大连站网络赛The kth great number-题解(C++代码)只做最好的思路! 摘要:这题题意还是比较好理解的,于是我也很快码出了,看似OK的代码,但是数组超限了,(1=>k){ m=0; memset(b,0,sizeof(b)); for(int i=0;i>a;…… 题解列表 2020年03月18日 0 点赞 0 评论 388 浏览 评分:9.9
[STL训练]第36届ACM亚洲区大连站网络赛The kth great number-题解(C++代码) 摘要:题目大意: 1.根据样例输入 8 3 I 1 I 2 I 3 Q I 5 …… 题解列表 2020年03月04日 0 点赞 0 评论 400 浏览 评分:9.9