A14296 | Diluc and Kaeya
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The tycoon of a winery empire in Mondstadt, unmatched in every possible way. A thinker in the Knights of Favonius with an exotic appearance.
This time, the brothers are dealing with a strange piece of wood marked with their names. This plank of wood can be represented as a string of $n$ characters. Each character is either a 'D' or a 'K'. You want to make some number of cuts (possibly $0$ ) on this string, partitioning it into several contiguous pieces, each with length at least $1$ . Both brothers act with dignity, so they want to split the wood as evenly as possible. They want to know the maximum number of pieces you can split the wood into such that the ratios of the number of occurrences of 'D' to the number of occurrences of 'K' in each chunk are the same.
Kaeya, the curious thinker, is interested in the solution for multiple scenarios. He wants to know the answer for every prefix of the given string. Help him to solve this problem!
For a string we define a ratio as $a:b$ where 'D' appears in it $a$ times, and 'K' appears $b$ times. Note that $a$ or $b$ can equal $0$ , but not both. Ratios $a:b$ and $c:d$ are considered equal if and only if $a\cdot d = b\cdot c$ .
For example, for the string 'DDD' the ratio will be $3:0$ , for 'DKD' — $2:1$ , for 'DKK' — $1:2$ , and for 'KKKKDD' — $2:4$ . Note that the ratios of the latter two strings are equal to each other, but they are not equal to the ratios of the first two strings.
This time, the brothers are dealing with a strange piece of wood marked with their names. This plank of wood can be represented as a string of $n$ characters. Each character is either a 'D' or a 'K'. You want to make some number of cuts (possibly $0$ ) on this string, partitioning it into several contiguous pieces, each with length at least $1$ . Both brothers act with dignity, so they want to split the wood as evenly as possible. They want to know the maximum number of pieces you can split the wood into such that the ratios of the number of occurrences of 'D' to the number of occurrences of 'K' in each chunk are the same.
Kaeya, the curious thinker, is interested in the solution for multiple scenarios. He wants to know the answer for every prefix of the given string. Help him to solve this problem!
For a string we define a ratio as $a:b$ where 'D' appears in it $a$ times, and 'K' appears $b$ times. Note that $a$ or $b$ can equal $0$ , but not both. Ratios $a:b$ and $c:d$ are considered equal if and only if $a\cdot d = b\cdot c$ .
For example, for the string 'DDD' the ratio will be $3:0$ , for 'DKD' — $2:1$ , for 'DKK' — $1:2$ , and for 'KKKKDD' — $2:4$ . Note that the ratios of the latter two strings are equal to each other, but they are not equal to the ratios of the first two strings.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 1000$ ). Description of the test cases follows.
The first line of each test case contains an integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ) — the length of the wood.
The second line of each test case contains a string $s$ of length $n$ . Every character of $s$ will be either 'D' or 'K'.
It is guaranteed that the sum of $n$ over all test cases does not exceed $5 \cdot 10^5$ .
The first line of each test case contains an integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ) — the length of the wood.
The second line of each test case contains a string $s$ of length $n$ . Every character of $s$ will be either 'D' or 'K'.
It is guaranteed that the sum of $n$ over all test cases does not exceed $5 \cdot 10^5$ .
输出格式
For each test case, output $n$ space separated integers. The $i$ -th of these numbers should equal the answer for the prefix $s_{1},s_{2},\dots,s_{i}$ .
输入输出样例
输入 #1
5 3 DDK 6 DDDDDD 4 DKDK 1 D 9 DKDKDDDDK
输出 #1
1 2 1 1 2 3 4 5 6 1 1 1 2 1 1 1 1 2 1 2 1 1 3
For the first test case, there is no way to partition 'D' or 'DDK' into more than one block with equal ratios of numbers of 'D' and 'K', while you can split 'DD' into 'D' and 'D'.
For the second test case, you can split each prefix of length $i$ into $i$ blocks 'D'.
For the second test case, you can split each prefix of length $i$ into $i$ blocks 'D'.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted