- 假期作业
- 2023-06-10 11:43:34 @
#include<bits/stdc++.h>
using namespace std;
int n,p,q;
struct zy
{
int bh;
int nd;
}a[300005];
bool cp(zy a,zy b)
{
if(a.nd==b.nd)return a.bh>b.bh;
return a.nd<b.nd;
}
int main()
{
cin>>n>>p>>q;
for(int i=1;i<=n;i++)
{
a[i].bh=i;
cin>>a[i].nd;
}
sort(a+1,a+n+1,cp);
for(int i=p;i<=q;i++)
cout<<a[i].bh<<' ';
return 0;
}
0 条评论
目前还没有评论...
信息
- ID
- 1900
- 难度
- 8
- 分类
- (无)
- 标签
- 递交数
- 200
- 已通过
- 30
- 通过率
- 15%
- 被复制
- 6
- 上传者