Codeforces 638A:Home Numbers(规律)

来源:互联网 发布:js中函数的定义 编辑:程序博客网 时间:2024/06/06 19:50
A. Home Numbers
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The main street of Berland is a straight line with n houses built along it (n is an even number). The houses are located at both sides of the street. The houses with odd numbers are at one side of the street and are numbered from 1 ton - 1 in the order from the beginning of the street to the end (in the picture: from left to right). The houses with even numbers are at the other side of the street and are numbered from2 to n in the order from the end of the street to its beginning (in the picture: from right to left). The corresponding houses with even and odd numbers are strictly opposite each other, that is, house 1 is opposite house n, house 3 is opposite house n - 2, house 5 is opposite house n - 4 and so on.

Vasya needs to get to house number a as quickly as possible. He starts driving from the beginning of the street and drives his car to housea. To get from the beginning of the street to houses number1 and n, he spends exactly1 second. He also spends exactly one second to drive the distance between two neighbouring houses. Vasya can park at any side of the road, so the distance between the beginning of the street at the houses that stand opposite one another should be considered the same.

Your task is: find the minimum time Vasya needs to reach house a.

Input

The first line of the input contains two integers, n anda (1 ≤ a ≤ n ≤ 100 000) — the number of houses on the street and the number of the house that Vasya needs to reach, correspondingly. It is guaranteed that numbern is even.

Output

Print a single integer — the minimum time Vasya needs to get from the beginning of the street to housea.

Examples
Input
4 2
Output
2
Input
8 5
Output
3
Note

In the first sample there are only four houses on the street, two houses at each side. House2 will be the last at Vasya's right.

The second sample corresponds to picture with n = 8. House5 is the one before last at Vasya's left.

题目大意:房子的编号如图所示,车子从左往右出发,每经过一个对房子需要耗时一分钟,问你走到所需要的房子所用时间。

解题思路:观察图可发现,每一对相对的房子的编号总和为n+1,且到达奇数编号的房子所需要的时间为奇数房子的编号+1再除2,那么将编号为偶数的房子转化为对面的奇数房子的编号,再按奇数房子求即可。

代码如下:

#include <stdio.h>int main(){int n,a;scanf("%d%d",&n,&a);if(a%2==1){printf("%d\n",(a+1)/2);}else{int ji=n+1-a;printf("%d\n",(ji+1)/2);}return 0;}


0 0