第十一题 九度p38 ,贪心算法 cb的编译器出问题了,以后还是用dev吧

//九度p38 ,贪心算法
//九度oj 
#include 
#include 
#include 

using namespace std;

struct node{
    int we;
    int co;
    double bi;
    bool operator < (const node & b) const
    {
        return bi>b.bi;
    }
}buf[1000];

int main()
{
    int m,n;
    double left,ans;
    while(scanf("%d%d",&m,&n)!=EOF&&(m!=-1)&&(n!=-1))
    {
        for(int i=0;i0;i++)
        {

            if(left

你可能感兴趣的:(ACM之路)