标签:style blog io color os for sp 数据 div
2 6 3 1 4 1 1 9 3 2 7 1 1
3 -1
水BFS、上代码 - -
#include <iostream> #include <cstdio> #include <queue> #include <cstring> using namespace std; #define N 110 struct Water { int w[3],t; }; int v[3],e[3]; int vis[N][N][N]; void pour(Water &t,int i,int j) //i往j倒水 { if(v[j]-t.w[j]>=t.w[i]) { t.w[j]+=t.w[i]; t.w[i]=0; } else { t.w[i]-=v[j]-t.w[j]; t.w[j]=v[j]; } } void BFS() { queue<Water> q; memset(vis,0,sizeof(vis)); Water now,next; now.w[0]=v[0]; now.w[1]=0; now.w[2]=0; now.t=0; q.push(now); vis[v[0]][0][0]=1; while(!q.empty()) { now=q.front(); q.pop(); if(now.w[0]==e[0] && now.w[1]==e[1] && now.w[2]==e[2]) { cout<<now.t<<endl; return; } for(int i=0;i<3;i++) { for(int j=0;j<3;j++) { if(i==j) continue; next=now; pour(next,i,j); if(!vis[next.w[0]][next.w[1]][next.w[2]]) { next.t++; q.push(next); vis[next.w[0]][next.w[1]][next.w[2]]=1; } } } } cout<<-1<<endl; } int main() { int T; scanf("%d",&T); while(T--) { scanf("%d%d%d",&v[0],&v[1],&v[2]); scanf("%d%d%d",&e[0],&e[1],&e[2]); BFS(); } return 0; }
标签:style blog io color os for sp 数据 div
原文地址:http://www.cnblogs.com/hate13/p/4067173.html