Codeforces 124A - The number of positions

Posted 午夜的行人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 124A - The number of positions相关的知识,希望对你有一定的参考价值。

题目链接:http://codeforces.com/problemset/problem/124/A

Petr stands in line of n people, but he doesn‘t know exactly which position he occupies. He can say that there are no less than a people standing in front of him and no more than b people standing behind him. Find the number of different positions Petr can occupy.

Input

The only line contains three integers n, a and b (0 ≤ a, b < n ≤ 100).

Output

Print the single number — the number of the sought positions.

Examples
Input
3 1 1
Output
2
Input
5 2 3
Output
3
Note

The possible positions in the first sample are: 2 and 3 (if we number the positions starting with 1).

In the second sample they are 3, 4 and 5.

题解:减去面前的与后面的再比较

 1 #include <iostream>
 2 #include <string>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <cmath>
 6 #include <map>
 7 #include <set>
 8 using namespace std;
 9 #define N 100010
10 int main()
11 {
12     int n,a,b;
13     while(cin>>n>>a>>b){
14         int s=n-a;
15         if(s>b) s=b+1;
16         cout<<s<<endl;    
17     }
18     return 0;
19 }

 

以上是关于Codeforces 124A - The number of positions的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 950D A Leapfrog in the Array ( 思维 && 模拟 )

CodeForces 622B The Time

Educational Codeforces Round 7 F - The Sum of the k-th Powers 拉格朗日插值

CodeForces 625B War of the Corporations

CodeForces 625A Guest From the Past

CodeForces 618B Guess the Permutation