101671: [AtCoder]ABC167 B - Easy Linear Programming

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

We have $A$ cards, each of which has an integer $1$ written on it. Similarly, we also have $B$ cards with $0$s and $C$ cards with $-1$s.

We will pick up $K$ among these cards. What is the maximum possible sum of the numbers written on the cards chosen?

Constraints

  • All values in input are integers.
  • $0 \leq A, B, C$
  • $1 \leq K \leq A + B + C \leq 2 \times 10^9$

Input

Input is given from Standard Input in the following format:

$A$ $B$ $C$ $K$

Output

Print the maximum possible sum of the numbers written on the cards chosen.


Sample Input 1

2 1 1 3

Sample Output 1

2

Consider picking up two cards with $1$s and one card with a $0$. In this case, the sum of the numbers written on the cards is $2$, which is the maximum possible value.


Sample Input 2

1 2 3 4

Sample Output 2

0

Sample Input 3

2000000000 0 0 2000000000

Sample Output 3

2000000000

Input

题意翻译

我们有上面写着 $1$ 的 $A$ 张牌,上面写着 $0$ 的 $B$ 张牌,上面写着 $-1$ 的 $C$ 张牌。 此时我们一次性从中取出 $K$ 张牌,求所取的牌的最大和。 by [djh123456](https://www.luogu.com.cn/user/367575) 。

加入题单

算法标签: