码迷,mamicode.com
首页 > Web开发 > 详细

https://www.luogu.org/problemnew/show/P1113

时间:2019-01-08 15:07:50      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:for   src   efi   mem   www.   string   span   ace   names   

用DP来写,下次加拓扑

技术分享图片
 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<cmath>
 6 #include<queue>
 7 #include<stdlib.h>
 8 #define mem(a) memset(a,0,sizeof(a))
 9 using namespace std;
10 int f[10005];
11 int main()
12 {
13   int t,n,time,u;
14   cin>>t;
15   int ans=0;
16   for(int i=1;i<=t;i++)
17   {
18     cin>>n>>time;
19     while((cin>>u)&&u)
20     f[i]=max(f[i],f[u]); 
21 //也可以写成 int s; s=max(f[u],s); f[i]=s+time;
22     f[i]+=time;
23     ans=max(f[i],ans);
24 /*时时更新,f[i]改变的不是f[u],所以是不断取更高的,
25 因为u<i且有无限个工人,故就算存在多个u,也是求在i时的f[i]max*/
26   }
27   cout<<ans<<endl;
28   return 0;
29 }
View Code

 

https://www.luogu.org/problemnew/show/P1113

标签:for   src   efi   mem   www.   string   span   ace   names   

原文地址:https://www.cnblogs.com/XXrll/p/10238140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!