文章

2

粉丝

0

获赞

13

访问

577

头像
组队刷题 题解:
P1307
发布于2025年3月1日 14:02
阅读数 295

想问一下大佬们这个为什么只有40%的正确率啊,在哪出错了呢

#include <iostream>
#include<algorithm>
using namespace std;
struct Node
{
    int w;
    int m;
    double rate;
};
double function1(int w,int m)
{
    return w/m;
}
bool cmp(struct Node a,struct Node b)
{
    return a.rate>b.rate;
}
int main()
{
    int sum,total;
    while(cin>>sum>>total)
    {
        if(sum==-1&&total==-1)
        {
            break;
        }
        else
        {
            struct Node N[100];
            for(int i=0;i<total;i++)
    {
        cin>>N[i].w>>N[i].m;
        N[i].rate=function1(N[i].w,N[i].m);
 ...

登录查看完整内容


登录后发布评论

1 条评论
快乐小土狗
2025年3月2日 02:52

精度有问题,int相除还是int,5/2=2

赞(0)