简单搜索
成龙大侠
这个作者很懒,什么都没留下…
展开
-
POJ3278 Catch That Cow(BFS)
Description农夫知道一头牛的位置,想要抓住它。农夫和牛都于数轴上 ,农夫起始位于点 N(0<=N<=100000) ,牛位于点 K(0<=K<=100000) 。农夫有两种移动方式: 1、从 X移动到 X-1或X+1 ,每次移动花费一分钟 2、从 X移动到 2*X ,每次移动花费一分钟 假设牛没有意识到农夫的行动,站在原地不动。最少要花多少时间才能抓住牛?...原创 2019-08-14 19:52:46 · 110 阅读 · 0 评论 -
POJ 1321 棋盘问题 (DFS)
Description在一个给定形状的棋盘(形状可能是不规则的)上面摆放棋子,棋子没有区别。要求摆放时任意的两个棋子不能放在棋盘中的同一行或者同一列,请编程求解对于给定形状和大小的棋盘,摆放k个棋子的所有可行的摆放方案C。Input输入含有多组测试数据。每组数据的第一行是两个正整数,n k,用一个空格隔开,表示了将在一个n*n的矩阵内描述棋盘,以及摆放棋子的数目。 n <= ...原创 2019-08-14 19:56:56 · 155 阅读 · 0 评论 -
POJ 1426 Find The Multiple(BFS)
DescriptionGiven a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. You may assume that n is not greater than ...原创 2019-08-14 20:05:57 · 123 阅读 · 0 评论 -
UVA-11624 Fire!(两遍BFS)
题意:乔在一个迷宫中,迷宫里着火了,乔和火都可以想上下左右四个方向走,速度也是一样的,问乔能逃出去吗,如果能最少需要几步?注意:着火的位置可能不止一处。解题思路:两遍BFS,第一遍先遍历火,并记录到每个地方的时间。第二遍遍历人,比较人能否在他逃生的路径上比火先到达。火不能够到达的地方的时间,记为无穷大。#pragma GCC optimize("O3")...原创 2019-08-14 20:28:54 · 264 阅读 · 0 评论 -
HDU 2612 Find a way(两遍BFS)
DescriptionPass a year learning in Hangzhou, yifenfei arrival hometown Ningbo at finally. Leave Ningbo one year, yifenfei have many people to meet. Especially a good friend Merceki.Yifenfei’s home...原创 2019-08-15 10:53:02 · 154 阅读 · 0 评论 -
POJ 3126 Prime Path(素筛+BFS)
DescriptionThe ministers of the cabinet were quite upset by the message from the Chief of Security stating that they would all have to change the four-digit room numbers on their offices.— It is a...原创 2019-08-15 11:00:05 · 139 阅读 · 0 评论