A15592 | Another Wine Tasting Event
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
After the first successful edition, Gabriella has been asked to organize a second wine tasting event. There will be $2n - 1$ bottles of wine arranged in a row, each of which is either red wine or white wine.
This time, Gabriella has already chosen the type and order of all the bottles. The types of the wines are represented by a string $s$ of length $2n - 1$ . For each $1 \le i \le 2n - 1$ , it holds that $s_i = \texttt{R}$ if the $i$ -th bottle is red wine, and $s_i = \texttt{W}$ if the $i$ -th bottle is white wine.
Exactly $n$ critics have been invited to attend. The critics are numbered from $1$ to $n$ . Just like last year, each critic $j$ wants to taste an interval of wines, that is, the bottles at positions $a_j, \, a_j + 1, \, \dots, \, b_j$ for some $1 \le a_j \le b_j \le 2n - 1$ . Moreover, they have the following additional requirements:
- each of them wants to taste at least $n$ wines, that is, it must hold that $b_j - a_j + 1 \ge n$ ;
- no two critics must taste exactly the same wines, that is, if $j \ne k$ it must hold that $a_j \ne a_k$ or $b_j \ne b_k$ .
Gabriella knows that, since the event is held in a coastal region of Italy, critics are especially interested in the white wines, and don't care much about the red ones. (Indeed, white wine is perfect to accompany seafood.) Thus, to ensure fairness, she would like that all critics taste the same number of white wines.
Help Gabriella find an integer $x$ (with $0 \le x \le 2n - 1$ ) such that there exists a valid assignment of intervals to critics where each critic tastes exactly $x$ white wines. It can be proved that at least one such $x$ always exists.
This time, Gabriella has already chosen the type and order of all the bottles. The types of the wines are represented by a string $s$ of length $2n - 1$ . For each $1 \le i \le 2n - 1$ , it holds that $s_i = \texttt{R}$ if the $i$ -th bottle is red wine, and $s_i = \texttt{W}$ if the $i$ -th bottle is white wine.
Exactly $n$ critics have been invited to attend. The critics are numbered from $1$ to $n$ . Just like last year, each critic $j$ wants to taste an interval of wines, that is, the bottles at positions $a_j, \, a_j + 1, \, \dots, \, b_j$ for some $1 \le a_j \le b_j \le 2n - 1$ . Moreover, they have the following additional requirements:
- each of them wants to taste at least $n$ wines, that is, it must hold that $b_j - a_j + 1 \ge n$ ;
- no two critics must taste exactly the same wines, that is, if $j \ne k$ it must hold that $a_j \ne a_k$ or $b_j \ne b_k$ .
Gabriella knows that, since the event is held in a coastal region of Italy, critics are especially interested in the white wines, and don't care much about the red ones. (Indeed, white wine is perfect to accompany seafood.) Thus, to ensure fairness, she would like that all critics taste the same number of white wines.
Help Gabriella find an integer $x$ (with $0 \le x \le 2n - 1$ ) such that there exists a valid assignment of intervals to critics where each critic tastes exactly $x$ white wines. It can be proved that at least one such $x$ always exists.
输入格式
The first line contains the integer $n$ ( $1 \le n \le 10^6$ ) — where $2n - 1$ is the number of bottles, and $n$ is the number of critics.
The second line contains a string $s$ of length $2n - 1$ that represents the arrangement of the wines — the $i$ -th character of $s$ ( $1 \le i \le 2n - 1$ ) is $\texttt{R}$ for a red wine and $\texttt{W}$ for a white wine.
The second line contains a string $s$ of length $2n - 1$ that represents the arrangement of the wines — the $i$ -th character of $s$ ( $1 \le i \le 2n - 1$ ) is $\texttt{R}$ for a red wine and $\texttt{W}$ for a white wine.
输出格式
Print an integer $x$ — the number of white wines that each critic will taste.
It can be proved that at least one solution exists. If multiple solutions exist, any of them will be accepted.
It can be proved that at least one solution exists. If multiple solutions exist, any of them will be accepted.
输入输出样例
输入 #1
5 RWWRRRWWW
输出 #1
2
输入 #2
1 R
输出 #2
0
In the first sample, there are $5$ critics and $2 \cdot 5 - 1 = 9$ bottles of wine. A possible set of intervals that makes each critic taste $2$ white wines is the following: $[2, 6],$ $[1, 6],$ $[4, 8],$ $[1, 5],$ $[3, 7]$ . Note that all intervals contain at least $5$ bottles.
In the second sample, there is $1$ critic and $2 \cdot 1 - 1 = 1$ bottle of wine. The only possible interval is $[1, 1]$ , which gives $x = 0$ .
In the second sample, there is $1$ critic and $2 \cdot 1 - 1 = 1$ bottle of wine. The only possible interval is $[1, 1]$ , which gives $x = 0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted