记录编号 |
107433 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[USACO 1.4] 母亲的牛奶 |
最终得分 |
100 |
用户昵称 |
HouJikan |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2014-06-25 20:56:32 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <list>
#include <vector>
#include <ctime>
#include <functional>
#define pritnf printf
#define scafn scanf
#define For(i,j,k) for(int i=(j);i<=(k);(i)++)
using namespace std;
typedef long long LL;
typedef unsigned int Uint;
const int INF=0x7ffffff;
//==============struct declaration==============
struct bot
{
int milk[4];
int max[4];
bot ()
{
memset(milk,0,sizeof(milk));
memset(max,0,sizeof(max));
}
int &operator[] (const int i)
{
return milk[i];
}
};
//==============var declaration=================
bool exist[21][21][21];
bool ans[21];
queue <bot> Q;
//==============function declaration============
void pour(bot &x,int f,int t);
//==============main code=======================
int main()
{
string FileName="milk3";//程序名
string FloderName="USACO";//文件夹名
freopen((FileName+".in").c_str(),"r",stdin);
freopen((FileName+".out").c_str(),"w",stdout);
#ifdef DEBUG
system(("cp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\"+FileName+".cpp C:\\Users\\Administrator\\Desktop\\"+FloderName+"\\submit.txt").c_str());
#endif
memset(exist,false,sizeof(exist));
memset(ans,false,sizeof(ans));
bot now;
cin>>now.max[1]>>now.max[2]>>now.max[3];
now[3]=now.max[3];
Q.push(now);
while (!Q.empty())
{
now=Q.front();
Q.pop();
if (now.milk[1]==0)
ans[now.milk[3]]=true;
bot New;
For(f,1,3)
For(t,1,3)
{
if (f==t) continue;
if (now.milk[f]==0) continue;
New=now;
pour(New,f,t);
if (!exist[New[1]][New[2]][New[3]])
{
exist[New[1]][New[2]][New[3]]=true;
Q.push(New);
}
}
}
For(i,0,20)
if (ans[i])
printf("%d ",i);
return 0;
}
//================fuction code====================
void pour(bot &x,int f,int t)
{
if (x.max[t]-x[t]<x[f])
{
x[f]-=x.max[t]-x[t];
x[t]=x.max[t];
}
else
{
x[t]+=x[f];
x[f]=0;
}
return;
}