文章

17

粉丝

0

获赞

119

访问

4.1k

头像
组队刷题 题解:
P1307
发布于2025年3月1日 11:31
阅读数 210

#include<bits/stdc++.h>
using namespace std;
struct node{
    int num;
    int e;
    double pre;
};


bool cmp(const node& a,const node& b){
    return a.pre<b.pre;
}

int main(){
    int total,n;
    while (cin >> total >> n) {
        if (total == -1 && n == -1) break;
    
        node s[n];
        for(int i=0;i<n;i++){
            cin>>s[i].num>>s[i].e;
        }
        
        for(int i=0;i<n;i++){
            s[i].pre=static_cast<double>(s[i].e)/s[i].num;
        }
       &nb...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发