码迷,mamicode.com
首页 > 其他好文 > 详细

Strategic game UVA - 1292

时间:2017-09-05 17:48:45      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:array   def   pre   string   ges   http   log   blog   ++   

技术分享

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstdio>
 4 #include<cstring>
 5 #include<vector>
 6 #define mem(array) memset(array,0,sizeof(array))
 7 using namespace std;
 8 
 9 int n,dp[1600][2];
10 bool vis[1600];
11 vector<int> G[1600];
12 
13 void Read(){
14     for(int i=0;i<n;i++) G[i].clear(); 
15     for(int i=0;i<n;i++){
16         int a,b,c;
17         scanf("%d:(%d)",&a,&b);
18         for(int j=0;j<b;j++){
19             scanf("%d",&c);
20             G[a].push_back(c);
21             G[c].push_back(a);
22         }
23     }    
24 }
25 
26 void DFS(int root){
27     dp[root][1]=1;
28     dp[root][0]=0;
29     vis[root]=true;
30     
31     for(int i=0;i<G[root].size();i++){
32         int sons=G[root][i];
33         if(vis[sons]) continue;
34 
35         DFS(sons);
36         dp[root][0]+=dp[sons][1];
37         dp[root][1]+=min(dp[sons][1],dp[sons][0]);
38     }
39 }
40 
41 int main()
42 {   while(~scanf("%d",&n)){
43         Read();
44         mem(vis);mem(dp);
45         DFS(0);
46         cout<<min(dp[0][1],dp[0][0])<<endl;
47     }
48     return 0;
49 } 

 

Strategic game UVA - 1292

标签:array   def   pre   string   ges   http   log   blog   ++   

原文地址:http://www.cnblogs.com/zgglj-com/p/7479627.html

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