POJ1949Chores

 比较简单的DP,注意这一句话Farmer John's list of chores is nicely ordered, and chore K (K > 1) can have only chores 1,.K-1 as prerequisites

意思是在完成第K个任务时只有前面1~K-1个任务能够成为它都优先任务,也就是说题目给定的序列已经拓扑排序完毕,则只需要从1一直DP到n就可以了,注意这里求的是最小时间,每次DP[i]应该等于完成之前优先任务的最大时间

 

#include <iostream>
using namespace std;
int dp[11000];//表示执行到第i个任务所需要的最小时间 
int num[11000];
int main()
{
    int n, m;
    while (scanf("%d", &n) != EOF){
          int ans = 0;//这里初始化为0,之前初始化为-1错了很多次 
          for (int i = 1; i <= n; i ++){
              int k;
              scanf("%d%d",&dp[i], &k);
              int maxx = 0;
              while (k --){
                    int a;
                    scanf("%d", &a);
                    maxx = max(dp[a], maxx);
              }       
              dp[i] += maxx;
              ans = max(ans, dp[i]);
          } 
          printf("%d\n", ans);
    }
    return 0;    
}


你可能感兴趣的:(list,任务)