首页
学习
活动
专区
圈层
工具
发布
社区首页 >专栏 >Codeforces Round #613 (Div. 2)A. Mezo Playing Zoma

Codeforces Round #613 (Div. 2)A. Mezo Playing Zoma

作者头像
glm233
发布2020-09-28 11:16:43
发布2020-09-28 11:16:43
5390
举报

A. Mezo Playing Zoma

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Today, Mezo is playing a game. Zoma, a character in that game, is initially at position x=0x=0. Mezo starts sending nn commands to Zoma. There are two possible commands:

  • 'L' (Left) sets the position x:=x−1x:=x−1;
  • 'R' (Right) sets the position x:=x+1x:=x+1.

Unfortunately, Mezo's controller malfunctions sometimes. Some commands are sent successfully and some are ignored. If the command is ignored then the position xx doesn't change and Mezo simply proceeds to the next command.

For example, if Mezo sends commands "LRLR", then here are some possible outcomes (underlined commands are sent successfully):

  • "LRLR" — Zoma moves to the left, to the right, to the left again and to the right for the final time, ending up at position 00;
  • "LRLR" — Zoma recieves no commands, doesn't move at all and ends up at position 00 as well;
  • "LRLR" — Zoma moves to the left, then to the left again and ends up in position −2−2.

Mezo doesn't know which commands will be sent successfully beforehand. Thus, he wants to know how many different positions may Zoma end up at.

Input

The first line contains nn (1≤n≤105)(1≤n≤105) — the number of commands Mezo sends.

The second line contains a string ss of nn commands, each either 'L' (Left) or 'R' (Right).

Output

Print one integer — the number of different positions Zoma may end up at.

Example

input

Copy

代码语言:javascript
复制
4
LRLR

output

Copy

代码语言:javascript
复制
5

Note

In the example, Zoma may end up anywhere between −2−2 and 22.

题意:两种操作,一种是L另一种是R,分别代表减一加一,,起始值为0,问给定一个指令序列值的变化区间长度是多少。

送分题啦,算一下减的最多的,加的最多的,两个相加还有0这个点就是答案~

代码语言:javascript
复制
#include<bits/stdc++.h>
#define ll long long
#define rg register ll
using namespace std;
ll a,b,n;
string s;
int main()
{
    cin>>n>>s;
    for(rg i=0;s[i];i++)
    {
        s[i]=='L'?a++:b++;
    }
    cout<<a+b+1<<endl;
    while(1)getchar();
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/01/19 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档