hdu4221 Greedy?(贪心)

真不知道为啥全是英文题。。。就不能好好的出中文的啊  啊 啊

果然看错了题意
 

#include 
#include 
using namespace std;
struct node 
{
	long long day,end;
}c[100005];
bool cmp(node x,node y)
{
	if(x.endy.day) return true;
	return false;
}
int main()
{
	int test,n,q=1;
	scanf("%d",&test);
	while(test--)
	{
		scanf("%d",&n);
		for(int i=0;imax)
			max=sum-c[i].end;
		}
		printf("Case %d: %lld\n",q++,max);
	}
	return 0;
}

唉 果然理解错了题意  连样例都看不懂


你可能感兴趣的:(【贪心】)