hdu1584 A strange lift (电梯最短路径问题)
A strange lift
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15570 Accepted Submission(s): 5832
go to the i+Ki th floor,as the same, if you press the button "DOWN" , you will go down Ki floor,i.e,you will go to the i-Ki th floor. Of course, the lift can't go up high than N,and can't go down lower than 1. For example, there is a buliding with 5 floors,
and k1 = 3, k2 = 3,k3 = 1,k4 = 2, k5 = 5.Begining from the 1 st floor,you can press the button "UP", and you'll go up to the 4 th floor,and if you press the button "DOWN", the lift can't do it, because it can't go down to the -2 th floor,as you know ,the -2
th floor isn't exist.
Here comes the problem: when you are on floor A,and you want to go to floor B,how many times at least he has to press the button "UP" or "DOWN"?
The first line contains three integers N ,A,B( 1 <= N,A,B <= 200) which describe above,The second line consist N integers k1,k2,....kn.
A single 0 indicate the end of the input.
5 1 5
3 3 1 2 5
0
3
pid=1142" style="color:rgb(26,92,200); text-decoration:none">1142
1217 1253Statistic | pid=1548" style="color:rgb(26,92,200); text-decoration:none">Submit problemid=1548" style="color:rgb(26,92,200); text-decoration:none">Discuss pid=1548" style="color:rgb(26,92,200); text-decoration:none">Note
电梯仅仅有两个方向,向上或者向下。既然是求最短路径。也就用到dijkstra算法(无负权值)。
仅仅要能想到怎样构造算法即可。假设自己的算法,却不知道怎样用来解题,也都是没用的。
在这里我想给大家说一下。
在以后做题的过程中,不要仅仅看别人的代码,要看思想,别人为什么这样写。然后依据自己想象的思想写一遍代码。写的过程中不要
看别人的代码。即使不正确也无所谓,这样印象最深,以后也就随手敲来、
详细还是代码里面见:
#include <stdio.h>
#include<string.h>
#include <queue>
using namespace std;
struct node
{
int pos,t;
friend bool operator<(node a,node b)
{
return a.t>b.t;
}
};
priority_queue<node>s;
int lift[205],vis[205],n;
int dijkstra(int st,int ed)
{
node temp,temp1;
int flag=0;
temp.pos=st,temp.t=0;
s.push(temp);
while(!s.empty())
{
temp1=temp=s.top(),s.pop();
vis[temp.pos]=1;
if(temp.pos==ed)
{
flag=1;
break;
}
temp.pos=temp1.pos-lift[temp1.pos];//
temp.t=temp1.t+1;
if(temp.pos>=1&&temp.pos<=n&&!vis[temp.pos])
s.push(temp);
temp.pos=temp1.pos+lift[temp1.pos];
temp.t=temp1.t+1;
if(temp.pos>=1&&temp.pos<=n&&!vis[temp.pos])
s.push(temp);//和以往的代码不同的也就这个地方。曾经做的要么是个矩阵,要么是个树,如今就两个方向了。。推断电梯的
这两个方向,进队列即可了
}
if(flag)
return temp.t;
else
return -1;
}
int main()
{
int st,ed;
while(scanf("%d",&n)!=EOF)
{
if(n==0)
break;
scanf("%d %d",&st,&ed);
for(int i=1;i<=n;i++)
scanf("%d",&lift[i]);
memset(vis,0,sizeof(vis));
while(!s.empty())
s.pop();
printf("%d\n",dijkstra(st,ed));
}
return 0;
}
hdu1584 A strange lift (电梯最短路径问题)的更多相关文章
- HDU1548——A strange lift(最短路径:dijkstra算法)
A strange lift DescriptionThere is a strange lift.The lift can stop can at every floor as you want, ...
- HDU 1548 A strange lift (最短路/Dijkstra)
题目链接: 传送门 A strange lift Time Limit: 1000MS Memory Limit: 32768 K Description There is a strange ...
- HDU 1548 A strange lift (bfs / 最短路)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 A strange lift Time Limit: 2000/1000 MS (Java/Ot ...
- hdu 1548 A strange lift (bfs)
A strange lift Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) T ...
- A strange lift
Problem Description There is a strange lift.The lift can stop can at every floor as you want, and th ...
- A strange lift HDU - 1548
There is a strange lift.The lift can stop can at every floor as you want, and there is a number Ki(0 ...
- HDU-1548 A strange lift(单源最短路 或 BFS)
Problem Description There is a strange lift.The lift can stop can at every floor as you want, and th ...
- Hdu1548 A strange lift 2017-01-17 10:34 35人阅读 评论(0) 收藏
A strange lift Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) Tota ...
- HDU 1548 A strange lift (广搜)
题目链接 Problem Description There is a strange lift.The lift can stop can at every floor as you want, a ...
随机推荐
- 【kruscal】【最小生成树】【离线】洛谷 P2266 爱的距离
建图:每个点向它四周的点连边权为两点点权的差的绝对值的边. 由于有多个需要“施法”的点,所以相当于对每个这样的点,询问与它的距离在T以内的最长边的最小值,即多次询问. 最长边最小之类的,肯定是最小生成 ...
- [CF911G]Mass Change Queries
题目大意: 给你一个长度为n的数列a,按顺序进行以下m次操作,每次将区间[l,r]中的所有x变成y,问最后数列是怎样的. 思路: 线段树. 每个线段树结点上维护当前区间每个数分别会变成多少.时间复杂度 ...
- Java多线程——ReentrantReadWriteLock源码阅读
之前讲了<AQS源码阅读>和<ReentrantLock源码阅读>,本次将延续阅读下ReentrantReadWriteLock,建议没看过之前两篇文章的,先大概了解下,有些内 ...
- 《深入理解Spark-核心思想与源码分析》(一)总体规划和第一章环境准备
<深入理解Spark 核心思想与源码分析> 耿嘉安著 本书共计486页,计划每天读书20页,计划25天完成. 2018-12-20 1-20页 凡事豫则立,不豫则废:言前定,则不跲:事 ...
- JAVA 基本概念和编码规范
概括性描述:一个Java程序可以认为是一系列对象的集合,而这些对象通过调用彼此的方法来协同工作. 基本概念: 下面简要介绍下类.对象.方法和属性的概念. 对象:对象是类的一个实例,有状态和行为.例如, ...
- android连接Mysql数据库之JDBC方式
一.创建一个数据库和若干表,并导入相关信息.这里以我之前使用的一个图书系统的数据库为例子. 首先假设已经安装并配置好Mysql.(建议大家安装WAMP,也就是安装完这个,就相当于安装了Mysql,PH ...
- Wait statistics, or please tell me where it hurts
https://www.sqlskills.com/blogs/paul/wait-statistics-or-please-tell-me-where-it-hurts/ By: Paul Rand ...
- DOM系统学习-表格、样式和元素大小
操作表格 属性: caption 标题元素 tHead 表头元素 tFoot 表尾元素 tBodies 主体元素集合,通过下标取 row 行元素集合,通过下标取 方法 ...
- ylbtech-LanguageSamples-ConditionalMethods(条件方法)
ylbtech-Microsoft-CSharpSamples:ylbtech-LanguageSamples-ConditionalMethods(条件方法) 1.A,示例(Sample) 返回顶部 ...
- C++之string学习
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <list> #include <string& ...