博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1236
阅读量:5261 次
发布时间:2019-06-14

本文共 1037 字,大约阅读时间需要 3 分钟。

水题~~但我做了很久;

题意:是中国人都懂了

思路:结构体排序;

以后要多用用重定义的排序手段,!!!!!多用!!多用!!多用!!

 

1 #include
2 #include
3 #include
4 using namespace std; 5 int grade[15]; 6 struct result{ 7 string num; 8 double tot; 9 }p[1050];10 bool cmp(result a,result b)11 {12 if(a.tot==b.tot)13 return a.num < b.num;14 return a.tot > b.tot;15 }16 int main()17 {18 int n,m,low,t;19 while(cin >> n && n){20 cin >> m >> low;21 for(int i=1;i<=m;++i)22 cin >> grade[i];23 string str;int x,y,sum=0;24 t=0;25 for(int i=0;i
> str;cin >> x;27 for(int j=0;j
> y;sum+=grade[y];29 }30 if(sum>=low){31 p[t].num=str;p[t].tot=sum;32 ++t;33 }34 sum=0;35 }36 sort(p,p+t,cmp);37 cout << t << endl;38 for(int i=0;i

 

转载于:https://www.cnblogs.com/sasuke-/p/5147791.html

你可能感兴趣的文章
前端04 /css样式
查看>>
前端05 /js基础
查看>>
前端07 /jQuery初识
查看>>
LCA
查看>>
祖孙询问 (lca或dfs序+时间戳)
查看>>
乘法逆元
查看>>
centos 关于yum无法使用
查看>>
vm 将宿主机文件夹 映射至 虚拟机
查看>>
随机数生成器
查看>>
CF852A Digits
查看>>
CF888G Xor-MST
查看>>
CF886E Maximum Element
查看>>
[算法模版]莫队
查看>>
[算法模版]斜率优化
查看>>
语法上的小trick
查看>>
CF461B Appleman and Tree
查看>>
CF219D Choosing Capital for Treeland
查看>>
[算法模版]AC自动机
查看>>
CF1207G Indie Album
查看>>
杂七杂八的小笔记本
查看>>