PTA Basic Level 1055
2021/8/6 23:06:43
本文主要是介绍PTA Basic Level 1055,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include<bits/stdc++.h> using namespace std; typedef struct{ char name[9]; int height; }stu; int cmp(const void* a,const void* b){ stu m=*(stu *)a; stu n=*(stu *)b; if (m.height==n.height) return strcmp(m.name,n.name); else return n.height-m.height; } int main(){ int n,k,r=1,index=0; cin>>n>>k; stu a[n]; for (int i=0;i<n;i++){ scanf("%s %d",a[i].name,&a[i].height); } qsort(a,n,sizeof(stu),cmp); // cout<<"---------------------------------------"<<endl; // cout<<"排序后"<<endl; // for (int i=0;i<n;i++){ // printf("%s %d\n",a[i].name,a[i].height); // } // cout<<"---------------------------------------"<<endl; while (r<=k){ int cnt_people;//代表该行的人数 if (r==1) cnt_people=n-n/k*(k-1); else cnt_people=n/k; int middle=cnt_people/2+1;//代表中间位置 stu ans[cnt_people]; ans[middle-1]=a[index]; int temp=index+1; for (int i=middle-2;i>=0;i--){//先填左边的 ans[i]=a[temp]; temp+=2; } temp=index+2; for (int i=middle;i<cnt_people;i++){//再填右边的 ans[i]=a[temp]; temp+=2; } for (int i=0;i<cnt_people;i++){ if (i!=0) printf(" "); printf("%s",ans[i].name); } index+=cnt_people; if (r!=k) cout<<endl; r++; } return 0; }
这篇关于PTA Basic Level 1055的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享