Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
35150 YOYOLEE-李昕颖 金银岛 C++ 解答错误 1 MS 264 KB 679 2023-12-26 21:34:16

Tests(0/1):


#include<iostream> #include<iomanip> #include<algorithm> using namespace std; struct s{ int w; double all,money; }a[10010]; bool cmp(s A,s B){ return A.money>B.money; } double ans; int n,wl,s; int main(){ cin>>n; for(int i=1;i<=n;i++){ ans=0.0; cin>>wl>>s; for(int j=1;j<=s;j++){ cin>>a[j].w>>a[j].all; a[j].money=a[j].all/a[j].w; } sort(a+1,a+1+s,cmp); for(int ii=1;ii<=s;ii++){ cout<<a[ii].w<<" "<<a[ii].all<<" "<<a[ii].money<<endl; } int k=1; while((wl-a[k].w)>=0&&k<=s){ ans+=a[k].all; wl-=a[k].w; k++; } ans+=a[k].money*wl; cout<<fixed<<setprecision(2)<<ans; cout<<endl; } return 0; }


测评信息: