poj 3278 catch that cow dfs Java

1 篇文章 0 订阅

poj 3278 catch that cow
自己一开始用的是dfs,但是dfs需要把所有的情况都求出来,才能得到最快的。所以后来改成了bfs,后来突然想到题目要求的是最快的,相当于最短路径了,所以用了 bfs。

import java.util.ArrayDeque;
import java.util.Scanner;

class Step {
    int x; // 位置
    int steps; // 到达位置 x 所需的步数

    public Step(int x, int steps) {
        this.x = x;
        this.steps = steps;
    }
}
/**
 * @author wangshaoyu
 */
public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int n = in.nextInt();
        int k = in.nextInt();
        boolean[] visited = new boolean[100011]; // 用于标记这个点是不是已经访问过了,总是忘记加这个数组
        ArrayDeque<Step> queue = new ArrayDeque<Step>();
        // 初始化
        visited[n] = true;
        queue.add(new Step(n, 0));

        while (! queue.isEmpty()) {
            Step st = queue.poll();
            // 如果找到目标
            if (st.x == k) {
                System.out.println(st.steps);
                return;
            }
            else {
                if (st.x - 1 >= 0 && visited[st.x - 1] == false) {
                    queue.add(new Step(st.x - 1, st.steps + 1));
                    visited[st.x - 1] = true;
                }
                if (st.x + 1 <= 100010 && visited[st.x + 1] == false) {
                    queue.add(new Step(st.x + 1, st.steps + 1));
                    visited[st.x + 1] = true;
                }
                if (st.x * 2<= 100010 && visited[st.x * 2] == false) {
                    queue.add(new Step(st.x * 2, st.steps + 1));
                    visited[st.x * 2] = true;
                }
            }
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值