A12179 | Rock-Paper-Scissors Champion
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
$n$ players are going to play a rock-paper-scissors tournament. As you probably know, in a one-on-one match of rock-paper-scissors, two players choose their shapes independently. The outcome is then determined depending on the chosen shapes: "paper" beats "rock", "rock" beats "scissors", "scissors" beat "paper", and two equal shapes result in a draw.
At the start of the tournament all players will stand in a row, with their numbers increasing from $1$ for the leftmost player, to $n$ for the rightmost player. Each player has a pre-chosen shape that they will use in every game throughout the tournament. Here's how the tournament is conducted:
- If there is only one player left, he is declared the champion.
- Otherwise, two adjacent players in the row are chosen arbitrarily, and they play the next match. The losing player is eliminated from the tournament and leaves his place in the row (with his former neighbours becoming adjacent). If the game is a draw, the losing player is determined by a coin toss.
The organizers are informed about all players' favoured shapes. They wish to find out the total number of players who have a chance of becoming the tournament champion (that is, there is a suitable way to choose the order of the games and manipulate the coin tosses). However, some players are still optimizing their strategy, and can inform the organizers about their new shapes. Can you find the number of possible champions after each such request?
At the start of the tournament all players will stand in a row, with their numbers increasing from $1$ for the leftmost player, to $n$ for the rightmost player. Each player has a pre-chosen shape that they will use in every game throughout the tournament. Here's how the tournament is conducted:
- If there is only one player left, he is declared the champion.
- Otherwise, two adjacent players in the row are chosen arbitrarily, and they play the next match. The losing player is eliminated from the tournament and leaves his place in the row (with his former neighbours becoming adjacent). If the game is a draw, the losing player is determined by a coin toss.
The organizers are informed about all players' favoured shapes. They wish to find out the total number of players who have a chance of becoming the tournament champion (that is, there is a suitable way to choose the order of the games and manipulate the coin tosses). However, some players are still optimizing their strategy, and can inform the organizers about their new shapes. Can you find the number of possible champions after each such request?
输入格式
The first line contains two integers $n$ and $q$ — the number of players and requests respectively ( $1 \leq n \leq 2 \cdot 10^5$ , $0 \leq q \leq 2 \cdot 10^5$ ).
The second line contains a string of $n$ characters. The $i$ -th of these characters is "R", "P", or "S" if the player $i$ was going to play "rock", "paper", or "scissors" before all requests respectively.
The following $q$ lines describe the requests. The $j$ -th of these lines contain an integer $p_j$ and a character $c_j$ meaning that the player $p_j$ is going to use the shape described by the character $c_j$ from this moment ( $1 \leq p_j \leq n$ ).
The second line contains a string of $n$ characters. The $i$ -th of these characters is "R", "P", or "S" if the player $i$ was going to play "rock", "paper", or "scissors" before all requests respectively.
The following $q$ lines describe the requests. The $j$ -th of these lines contain an integer $p_j$ and a character $c_j$ meaning that the player $p_j$ is going to use the shape described by the character $c_j$ from this moment ( $1 \leq p_j \leq n$ ).
输出格式
Print $q + 1$ integers $r_0, \ldots, r_q$ , where $r_k$ is the number of possible champions after processing $k$ requests.
输入输出样例
输入 #1
3 5 RPS 1 S 2 R 3 P 1 P 2 P
输出 #1
2 2 1 2 2 3
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted