2016HUAS暑假集训训练题 B - Catch That Cow
B - Catch That Cow
Description
Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number line. Farmer John has two modes of transportation: walking and teleporting.
* Walking: FJ can move from any point X to the points X - 1 or X + 1 in a single minute
* Teleporting: FJ can move from any point X to the point 2 × X in a single minute.
If the cow, unaware of its pursuit, does not move at all, how long does it take for Farmer John to retrieve it?
Input
Output
Sample Input
5 17
Sample Output
4
Hint

 import java.io.BufferedInputStream;
 import java.util.Arrays;
 import java.util.Scanner;
 public class Main {
     public static void main(String[] args) {
         Scanner s = new Scanner(new BufferedInputStream(System.in));
         while (s.hasNext()) {
             int a = s.nextInt(), b = s.nextInt();
             int[] l = new int[100010];
             int starts = 0;
             int ends = 0;
             l[0] = a;
             int n[] = new int[100010];
             Arrays.fill(n, 0);
             while (true) {
                 int v = l[starts];
                 if (v == b)
                     break;
                 if (n[v+ 1] == 0 && v + 1 <= 100000) {
                     l[++ends] = v + 1;
                     n[v + 1] = n[v] + 1;
                 }
                 if (v - 1 >= 0 && n[v - 1] == 0) {
                     l[++ends] = v - 1;
                     n[v - 1] = n[v] + 1;
                 }
                 if (v * 2 <= 100000 && n[v * 2] == 0) {
                     l[++ends] = v * 2;
                     n[v * 2] = n[v] + 1;
                 }
                 starts++;
             }
             System.out.println(n[b]);
         }
         s.close();
     }
 }
2016HUAS暑假集训训练题 B - Catch That Cow的更多相关文章
- 2016huas暑假集训训练题  G-Who's in the Middle
		题目链接:http://acm.hust.edu.cn/vjudge/contest/121192#problem/G 此题大意是给定一个数n 然后有n个数 要求求出其中位数 刚开始以为是按数学中的 ... 
- 2016HUAS暑假集训训练题  G - Oil Deposits
		Description The GeoSurvComp geologic survey company is responsible for detecting underground oil dep ... 
- 2016HUAS暑假集训训练题  F - 简单计算器
		Description 读入一个只包含 +, -, *, / 的非负整数计算表达式,计算该表达式的值. Input 测试输入包含若干测试用例,每个测试用例占一行,每行不超过200个字符,整数和运 ... 
- 2016HUAS暑假集训训练题  E - Rails
		There is a famous railway station in PopPush City. Country there is incredibly hilly. The station wa ... 
- 2016HUAS暑假集训训练题  D - Find a way
		F ... 
- 2016HUAS暑假集训训练2  O - Can you find it?
		题目链接:http://acm.hust.edu.cn/vjudge/contest/121192#problem/O 这道题是一道典型二分搜素题,题意是给定3个数组 每个数组的数有m个 再给定l个s ... 
- 2016HUAS暑假集训训练2  L - Points on Cycle
		题目链接:http://acm.hust.edu.cn/vjudge/contest/121192#problem/L 这是一道很有意思的题,就是给定一个以原点为圆心的圆,然后给定 一个点 求最大三 ... 
- 2016HUAS暑假集训训练2  K - Hero
		题目链接:http://acm.hust.edu.cn/vjudge/contest/121192#problem/K 这也是一道贪心题,刚开始写时以为只要对每一敌人的攻击和血的乘积进行从小到大排序即 ... 
- 2016HUAS暑假集训训练2  J - 今年暑假不AC
		题目链接:http://acm.hust.edu.cn/vjudge/contest/121192#problem/J 此题要求是计算能够看到最多的节目 ,贪心算法即可,首先对结束时间排序,然后在把开 ... 
随机推荐
- 使用JdbcTemplate报 Incorrect column count: expected 1, actual 5错误解决
			Incorrect column count: expected 1, actual 5 在使用jdbc的querForObject queryForList的时候,出现Incorrect colum ... 
- Memcached集群代理软件magent安装小结
			magent是一个memcached代理软件(memcached agent),又叫memagent. (magent is a simple but useful proxy program for ... 
- HTML DOM学习之三
			1.创建新的HTML元素:appendChild(); 如需向HTML DOM添加元素,首先必须创建该元素,然后把它追加到已有的元素上: <div id="div1"> ... 
- .NET方向高级开发人员面试时应该事先考虑的问题
			(澄清一下,我发帖的目的不是用来专门给人评价这些问题的好坏的,实际上我所在 的公司就考察这些问题.而能够基本上答出来的可以说百里挑一.如果各位觉得这些问题很简单,那么基本上在.NET面试环节就没有什么 ... 
- JavaScript定时器
			定时器 开启定时器 Setinterval间隔型 每隔一段时间重复的执行 SetTimeout延时型 只执行一次 两种定时器的区别 <!DOCTYPE html> <htm ... 
- ural 1147. Shaping Regions
			1147. Shaping Regions Time limit: 0.5 secondMemory limit: 64 MB N opaque rectangles (1 ≤ N ≤ 1000) o ... 
- ASP.net的url重写
			http://blog.csdn.net/windok2004/article/details/2432691 1. 有关于URL的重写,本文也只是拿来主意.相继有MS的组件“URLRewriter” ... 
- Ignatius's puzzle
			Ignatius's puzzle Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others ... 
- BZOJ3566 : [SHOI2014]概率充电器
			选个根把无根树转化成有根树, 设f[i]表示i不通电的概率 则 答案为对于枚举树根root进行DP后1-f[root]的和 直接算是O(n^2)的,但是n有500000,所以不能过. 对于这样一棵以1 ... 
- 使用 google gson 转换Timestamp或Date类型为JSON字符串.
			http://blog.csdn.net/z69183787/article/details/13016289 创建类型适配类: import java.lang.reflect.Type; impo ... 
