UVa10603
#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
#include <map>
#include <algorithm>
using namespace std;
int vstd[205][205][205];
struct bottle
{
int a,b,c;
};
int main()
{
int T;
int a,b,c,d;
scanf("%d",&T);
while (T--)
{
struct bottle B;
scanf("%d%d%d%d",&a,&b,&c,&d);
B.a=B.b=0;
B.c=c;
memset(vstd,0,sizeof(vstd));
queue<struct bottle> Q;
queue<int> water;
Q.push(B);
water.push(0);
vstd[0][0][c]=1;
int minn=1000000000;
int minnwater;
int record=1000000000;
int find=0;
while (!Q.empty())
{
struct bottle front=Q.front();
if ( front.a==d || front.b==d || front.c==d)
{
if (!find)
minnwater=water.front();
else if (water.front()<minnwater)
minnwater=water.front();
record=d;
find=1;
}
else if (!find)
{
if (front.a<d && d-front.a<minn)
{
minn=d-front.a;
record=front.a;
minnwater=water.front();
}
if (front.b<d && d-front.b<minn)
{
minn=d-front.b;
record=front.b;
minnwater=water.front();
}
if (front.c<d && d-front.c<minn)
{
minn=d-front.c;
record=front.c;
minnwater=water.front();
}
}
int temp=front.a;
int temp2=front.b;
front.b+=front.a;
front.a=0;
if (front.b>b)
{
front.a=temp-(b-temp2);
front.b=b;
temp-=front.a;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
front=Q.front();
temp=front.a;
temp2=front.c;
front.c+=front.a;
front.a=0;
if (front.c>c)
{
front.a=temp-(c-temp2);
front.c=c;
temp-=front.a;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
front=Q.front();
temp=front.b;
temp2=front.a;
front.a+=front.b;
front.b=0;
if (front.a>a)
{
front.b=temp-(a-temp2);
front.a=a;
temp-=front.b;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
front=Q.front();
temp=front.b;
temp2=front.c;
front.c+=front.b;
front.b=0;
if (front.c>c)
{
front.b=temp-(c-temp2);
front.c=c;
temp-=front.b;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
front=Q.front();
temp=front.c;
temp2=front.a;
front.a+=front.c;
front.c=0;
if (front.a>a)
{
front.c=temp-(a-temp2);
front.a=a;
temp-=front.c;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
front=Q.front();
temp=front.c;
temp2=front.b;
front.b+=front.c;
front.c=0;
if (front.b>b)
{
front.c=temp-(b-temp2);
front.b=b;
temp-=front.c;
}
if (!vstd[front.a][front.b][front.c])
{
Q.push(front);
water.push(water.front()+temp);
vstd[front.a][front.b][front.c]=1;
}
Q.pop();
water.pop();
}
printf("%d %d
",minnwater,record);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.