水桶智力题

有两个水桶,一个装5升水,一个装3升水,怎么利用这两个水桶,得到4升水?

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;

public class WaterPuzzle {
	private int[] pre;
	private int end=-1;
	public WaterPuzzle() {
		Queue<Integer> queue = new LinkedList<Integer>();
		boolean[] visited = new boolean[100];
		pre = new int[100];
		queue.add(0);
		visited[0] = true;
		while(!queue.isEmpty()) {
			int cur = queue.remove();
			int a= cur/10,b=cur%10;
			//max a =5 ,max  b = 3
			ArrayList<Integer> nexts = new ArrayList<Integer>();
			//todo : nexts
			nexts.add(5*10+b);
			nexts.add(a*10+3);
			nexts.add(0*10+b);
			nexts.add(a*10+0);
			
			int x=Math.min(a, 3-b);
			nexts.add((a-x)*10+(b+x));
			
			int y =Math.min(5-a,b);
			nexts.add((a+y)*10+(b-y));
			
			for(int next:nexts) {
				if(!visited[next]) {
					queue.add(next);
					visited[next] = true;
					pre[next] = cur;
					if(next/10==4 || next %10==4) {
						end = next;
						return;
					}
				}
			}
		}
	}
	public Iterable<Integer> result(){
		ArrayList<Integer> res = new ArrayList<Integer>();
		
		if(end==-1) {
			return res;
		}
		int cur = end;
		while(cur!=0) {
			res.add(cur);
			cur = pre[cur];
		}
		res.add(0);
		Collections.reverse(res);
		return res;
	}
	public static void main(String[] args) {
		// TODO Auto-generated method stub
		System.out.println((new WaterPuzzle()).result());
	}
}

答案过程为:[0, 50, 23, 20, 2, 52, 43]

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值