【贪心】流水作业调度问题II

 http://icpc.upc.edu.cn/problem.php?cid=1424&pid=8

#include
#include
using namespace std;
struct str
{
    int l,r;
    bool operator<(const str &str1)const
    {
        if (l=str1.r)
          return true;
        if (l=r&&str1.l>=str1.r)
            return r>str1.r;
        return false;
    }
} a[10005];
int n,i;
int main()
{
    while(scanf("%d",&n))
    {
        if (n==0)
            break;
        for(i=0; i

 

你可能感兴趣的:(【贪心】流水作业调度问题II)