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

UVA - 10603 Fill

时间:2018-03-05 22:29:13      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:pac   bre   cst   iostream   break   size   描述   png   top   

题目描述

技术分享图片

输入输出格式

输入格式:

 

技术分享图片

 

输出格式:

 

技术分享图片

 

输入输出样例

输入样例#1: 
2
2 3 4 2
96 97 199 62
输出样例#1: 
2 2
9859 62
 1 #include<iostream>
 2 #include<cstdlib>
 3 #include<queue>
 4 #include<string>
 5 #include<algorithm>
 6 #include<cstdio>
 7 #include<cstring>
 8 using namespace std;
 9 const int maxn=200+5;
10 struct node{
11     int v[3];
12     int dist;
13     bool operator < (const node & rhs) const {
14         return dist>rhs.dist;
15     }
16 };
17 
18 int vis[maxn][maxn];
19 int cap[3],ans[maxn];
20 
21 inline void update_ans(const node & u)
22 {
23     for(int i=0;i<3;i++)
24     {
25         int d=u.v[i];
26         if(ans[d]<0||u.dist<ans[d])
27             ans[d]=u.dist;
28     }
29 }
30 
31 inline void solve(int a,int b,int c,int d)
32 {
33     cap[0]=a;
34     cap[1]=b;
35     cap[2]=c;
36     memset(vis,0,sizeof(vis));
37     memset(ans,-1,sizeof(ans));
38     priority_queue<node>q;
39     node start;
40     start.dist=0;
41     start.v[0]=0;
42     start.v[1]=0;
43     start.v[2]=c;
44     q.push(start);
45     vis[0][0]=1;
46     while(!q.empty())
47     {
48         node u=q.top();
49         q.pop();
50         update_ans(u);
51         if(ans[d]>=0)
52             break;
53         for(int i=0;i<3;i++)
54         {
55             for(int j=0;j<3;j++)
56             {
57                 if(i!=j)
58                 {
59                     if(u.v[i]==0||u.v[j]==cap[j])
60                         continue;
61                     int amout=min(cap[j],u.v[i]+u.v[j])-u.v[j];
62                     node u2;
63                     memcpy(&u2,&u,sizeof(u));
64                     u2.dist=u.dist+amout;
65                     u2.v[i]-=amout;
66                     u2.v[j]+=amout;
67                     if(!vis[u2.v[0]][u2.v[1]])
68                     {
69                         vis[u2.v[0]][u2.v[1]]=true;
70                         q.push(u2);
71                     }
72                 }
73             }
74         }
75     }
76     while(d>=0)
77     {
78         if(ans[d]>=0)
79         {
80             printf("%d %d\n",ans[d],d);
81             return ;
82         }
83         d--;
84     }
85 }
86 
87 int main()
88 {
89     int t,a,b,c,d;
90     scanf("%d",&t);
91     while(t--)
92     {
93         scanf("%d%d%d%d",&a,&b,&c,&d);
94         solve(a,b,c,d);
95     }
96     return 0;
97 }

 

UVA - 10603 Fill

标签:pac   bre   cst   iostream   break   size   描述   png   top   

原文地址:https://www.cnblogs.com/Hammer-cwz-77/p/8511593.html

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