摘要:
每头牛在一定的时间段里挤奶,一共N个时间段,长度M,求最大挤奶量(类似于最大递增子序和1,3,2,4,3,6 最大和14)先排序,使时间段有序在求最大递增子序和View Code #include<stdio.h>#include<iostream>#include<algorithm>using namespace std;struct data{ int s; int e; int p;}s[1009];int dp[1009];bool cmp(data a,data b){ if(a.s==b.s) return a.e; else ... 阅读全文
posted @ 2012-01-09 10:55 huhuuu 阅读(626) 评论(0) 推荐(0) 编辑