A - ConneR and the A.R.C. Markland-N

题面:
Sakuzyo - Imprinting
A.R.C. Markland-N is a tall building with n floors numbered from 1 to n. Between each two adjacent floors in the building, there is a staircase connecting them.

It’s lunchtime for our sensei Colin “ConneR” Neumann Jr, and he’s planning for a location to enjoy his meal.

ConneR’s office is at floor s of the building. On each floor (including floor s, of course), there is a restaurant offering meals. However, due to renovations being in progress, k of the restaurants are currently closed, and as a result, ConneR can’t enjoy his lunch there.

CooneR wants to reach a restaurant as quickly as possible to save time. What is the minimum number of staircases he needs to walk to reach a closest currently open restaurant.

Please answer him quickly, and you might earn his praise and even enjoy the lunch with him in the elegant Neumanns’ way!

Input
The first line contains one integer t (1≤t≤1000) — the number of test cases in the test. Then the descriptions of t test cases follow.

The first line of a test case contains three integers n, s and k (2≤n≤109, 1≤s≤n, 1≤k≤min(n−1,1000)) — respectively the number of floors of A.R.C. Markland-N, the floor where ConneR is in, and the number of closed restaurants.

The second line of a test case contains k distinct integers a1,a2,…,ak (1≤ai≤n) — the floor numbers of the currently closed restaurants.

It is guaranteed that the sum of k over all test cases does not exceed 1000.

Output
For each test case print a single integer — the minimum number of staircases required for ConneR to walk from the floor s to a floor with an open restaurant.

Example
Input
5
5 2 3
1 2 3
4 3 3
4 1 2
10 2 6
1 2 3 4 5 7
2 1 1
2
100 76 8
76 75 36 67 41 74 10 77
Output
2
0
4
0
2
Note
In the first example test case, the nearest floor with an open restaurant would be the floor 4.

In the second example test case, the floor with ConneR’s office still has an open restaurant, so Sensei won’t have to go anywhere.

In the third example test case, the closest open restaurant is on the 6-th floor.
题意:
一栋n层的楼每一层都有餐馆,其中k层的餐馆是关闭的,一个人在s层,问他至少要上或下几层才能进入没有关门的餐馆
题解:
小贪心一下
将关闭的k层放入数组a排序
判断,若s层不属于k层直接输出0
否则循环判断a[i+1]-a[i]是否大于1
因为s层处于数组内,所以最佳楼层一定是相邻于某个元素的,只判断a[i]+1和a[i+1]-1两个楼层即可
AC代码:

#include<iostream>
#include<cmath>
#include<cstring>
#include<algorithm>
using namespace std;
int a[1050];
int n,s,k,d,i,p,ans;
int main(){
    int T;
    cin>>T;
    while(T--){
    	cin>>n>>s>>k;
    	for(i=1;i<=k;i++) cin>>a[i];
    	sort(a+1,a+1+k);
    	a[0]=0;
    	a[k+1]=n+1;
    	ans=10000;
    	bool flag=true;
    	for(i=0;i<=k;i++){
        	if(a[i]==s||a[i+1]==s) flag=false;
        	if(a[i+1]-a[i]>1){
            	ans=min(ans,abs(s-a[i+1]+1));
            	ans=min(ans,abs(s-a[i]-1));
        	}
    	}
    	if(flag) ans=0;
    	cout<<ans<<endl;
	}
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值