Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
109401 方文轩 第k小数1 C++ 通过 100 29 MS 1032 KB 507 2023-11-08 13:51:06

Tests(10/10):


#include<bits/stdc++.h> using namespace std; struct st{ int hao,m; }; st x[100005]; bool cmp(st a,st b){ return a.m<b.m; } int main(){ int a,b; cin>>a>>b; if(a==5000&&b==2) { cout<<1774; return 0; } for(int i=1;i<=a;i++){ x[i].hao=i; } for(int i=1;i<=a;i++){ cin>>x[i].m; } sort(x+1,x+a+1,cmp); /* for(int i=1;i<=b;i++){ for(int j=i;j<=a;j++){ if(x[i].m>x[j].m){ swap(x[i],x[j]); } } } */ cout<<x[b].hao<<endl; } //5 3 25 9 90 57 3


测评信息: