POJ3278解题报告

五一快乐!么么

POJ3278很难找到原题的中文翻译,都是给的题目大意哎!我是用java写的。BFS搜索,

有缺点望指出来。thaks。。


import java.io.BufferedInputStream;
import java.util.LinkedList;
import java.util.Queue;
import java.util.Scanner;

/*POJ3278
 * 大致题意:
给定两个整数n和k
通过 n+1或n-1 或n*2 这3种操作,使得n==k
输出最少的操作次数
 * 
 * */
public class Main {
	static int MAX = 200000;

	public static void main(String args[]) {
		Scanner sc = new Scanner(new BufferedInputStream(System.in));
		int n = sc.nextInt();
		int k = sc.nextInt();
		System.out.println(bfs(n, k));
	}

	private static int bfs(int n, int k) {
		// TODO Auto-generated method stub
		Queue queue = new LinkedList();
		queue.offer(n);
		if (n == k) {
			return 0;
		}
		int[] min = new int[MAX + 5];
		boolean[] visited = new boolean[MAX + 5];
		visited[n] = true;
		while (!queue.isEmpty()) {
			int next = queue.remove();
			for (int i = 0; i < 3; i++) {
				int temp = next;
				if (i == 0) {
					temp++;
				} else if (i == 1) {
					temp--;
				} else if (i == 2) {
					temp *= 2;
				}
				if (!visited[temp]) {
					queue.offer(temp);
					visited[temp] = true;
					min[temp] = min[next] + 1;
				}
				if (temp == k) {
					return min[k];
				}
			}
		}
		return 0;
	}
}


你可能感兴趣的:(数据结构与算法)