A. Another One Bites The Dust

A. Another One Bites The Dust

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Let's call a string good if and only if it consists of only two types of letters — 'a' and 'b' and every two consecutive letters are distinct. For example "baba" and "aba" are good strings and "abb" is a bad string.

You have aa strings "a", bb strings "b" and cc strings "ab". You want to choose some subset of these strings and concatenate them in any arbitrarily order.

What is the length of the longest good string you can obtain this way?

Input

The first line contains three positive integers aa, bb, cc (1≤a,b,c≤1091≤a,b,c≤109) — the number of strings "a", "b" and "ab" respectively.

Output

Print a single number — the maximum possible length of the good string you can obtain.

Examples

input

Copy

1 1 1

output

Copy

4

input

Copy

2 1 2

output

Copy

7

input

Copy

3 5 2

output

Copy

11

input

Copy

2 2 1

output

Copy

6

input

Copy

1000000000 1000000000 1000000000

output

Copy

4000000000

Note

In the first example the optimal string is "baba".

In the second example the optimal string is "abababa".

In the third example the optimal string is "bababababab".

In the fourth example the optimal string is "ababab".

题意:输入a,b,c表示字符a的个数,字符b的个数,字符ab的个数,然后组成一个字符串,相邻的两个字符不能一样,输出能够得到的最长字符串的长度。

题解:贪心 规律题   如果a,b的个数相等那就是c*2+a+b就是最大长度,不相等就是c*2+min(a,b)+1

c++:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    long long a,b,c;
    cin>>a>>b>>c;
    cout<<(a==b?(a+c)*2:(min(a,b)+c)*2+1)<<endl;
    return 0;
}

python:

a,b,c=map(int,input().split())
print(min(a,b)*2+c*2+(a!=b))

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

落凡尘.

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值