码迷,mamicode.com
首页 > 其他好文 > 详细

Alaska

时间:2017-08-04 19:31:39      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:car   tor   one   bsp   space   travel   输出   size   png   

题目描写叙述

技术分享

Problem B: Alaska

The Alaska Highway runs 1422 miles from Dawson Creek, British Columbia to Delta Junction, Alaska. Brenda would like to be the first person to drive her new electric car the length of the highway. Her car can travel up to 200 miles once charged at a special charging station. There is a charging station in Dawson Creek, where she begins her journey, and also several charging stations along the way. Can Brenda drive her car from Dawson City to Delta Juntion and back?

输入要求

The input contains several scenario. Each scenario begins with a line containing n, a positive number indicating the number of charging stations. nlines follow, each giving the location of a filling station on the highway, including the one in Dawson City. The location is an integer between 0 and 1422, inclusive, indicating the distance in miles from Dawson Creek. No two filling stations are at the same location. A line containing 0 follows the last scenario.

输出要求

For each scenario, output a line containing POSSIBLE if Brenda can make the trip. Otherwise, output a line containing the word IMPOSSIBLE.

假如输入

2
0
900
8
1400
1200
1000
800
600
400
200
0
0

应当输出

IMPOSSIBLE
POSSIBLE
be careful:读题一定要细致

#include<iostream>
#include<algorithm>
#include <vector>
#include<string.h>
#include<ctype.h>
using namespace std;
void fun();
int main()
{
	fun();
	return 0;
}
void fun()
{
	int i,n,arr[1500],flag;
	while(cin>>n&&n)
	{
		flag=1;
		for(i=0;i<n;i++)
			cin>>arr[i];
		sort(arr,arr+n,greater<int>());
		if(1422-arr[0]>100||arr[n-1]>100)//这是个大坑,是来回。所以需大于100不能到达
			flag=0;
		for(i=0;i<n&&flag;i++)
		{
			if(arr[i]-arr[i+1]>200)
			{
				flag=0;
				break;
			}
		}
		if(flag)
			cout<<"POSSIBLE"<<endl;
		else
			cout<<"IMPOSSIBLE"<<endl;
	}
}





Alaska

标签:car   tor   one   bsp   space   travel   输出   size   png   

原文地址:http://www.cnblogs.com/ljbguanli/p/7286417.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!