2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;bool compare(int a,int b){ …… 题解列表 2024年11月18日 0 点赞 0 评论 67 浏览 评分:0.0
优先队列的使用 摘要:#include<bits/stdc++.h> using namespace std; priority_queue<int>v;//大根堆 int main() { int n,…… 题解列表 2024年07月22日 0 点赞 0 评论 53 浏览 评分:0.0
编写题解 2059: [STL训练]sort练习 摘要:```c #include int main() { int num,n,i,j,temp,nums[10000000]; scanf("%d %d",&num,&n); fo…… 题解列表 2024年06月04日 0 点赞 0 评论 125 浏览 评分:9.9
2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:sort排序从后向前输出#include<bits/stdc++.h> int main() { int m,n; int arr[1000]; …… 题解列表 2023年10月24日 0 点赞 0 评论 129 浏览 评分:0.0
c++sort简单解法 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip>#include<math.h>#include<algorithm>using namespac…… 题解列表 2023年10月17日 0 点赞 0 评论 72 浏览 评分:0.0
[STL训练]sort练习 摘要:# STL sort ## 头文件 ```c++ #include ``` # 完整代码 ```c++ #include #include #include int mai…… 题解列表 2023年06月07日 0 点赞 0 评论 146 浏览 评分:0.0
从大到小的顺序输出其中前m大的数 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())L = list(map(int,input().split()))L.sort(reverse = True…… 题解列表 2023年01月14日 0 点赞 0 评论 71 浏览 评分:0.0
2059——————sort练习 摘要: n,m = map(int,input().split()) s = sorted(list(map(int,input().split())))[::-1] for i …… 题解列表 2022年07月17日 0 点赞 0 评论 238 浏览 评分:0.0
[STL训练]sort练习-题解(各语言代码) 摘要:**python** ```python from heapq import nlargest print(*nlargest(int(input().split()[1]),map(int,i…… 题解列表 2022年04月01日 0 点赞 0 评论 233 浏览 评分:0.0
[STL训练]sort练习 摘要:```cpp #include using namespace std; #include int main(){ int n,m; cin >> n >> m; list l…… 题解列表 2022年02月27日 0 点赞 0 评论 141 浏览 评分:0.0