A12105 | Tanya and Colored Candies
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ candy boxes in front of Tania. The boxes are arranged in a row from left to right, numbered from $1$ to $n$ . The $i$ -th box contains $r_i$ candies, candies have the color $c_i$ (the color can take one of three values — red, green, or blue). All candies inside a single box have the same color (and it is equal to $c_i$ ).
Initially, Tanya is next to the box number $s$ . Tanya can move to the neighbor box (that is, with a number that differs by one) or eat candies in the current box. Tanya eats candies instantly, but the movement takes one second.
If Tanya eats candies from the box, then the box itself remains in place, but there is no more candies in it. In other words, Tanya always eats all the candies from the box and candies in the boxes are not refilled.
It is known that Tanya cannot eat candies of the same color one after another (that is, the colors of candies in two consecutive boxes from which she eats candies are always different). In addition, Tanya's appetite is constantly growing, so in each next box from which she eats candies, there should be strictly more candies than in the previous one.
Note that for the first box from which Tanya will eat candies, there are no restrictions on the color and number of candies.
Tanya wants to eat at least $k$ candies. What is the minimum number of seconds she will need? Remember that she eats candies instantly, and time is spent only on movements.
Initially, Tanya is next to the box number $s$ . Tanya can move to the neighbor box (that is, with a number that differs by one) or eat candies in the current box. Tanya eats candies instantly, but the movement takes one second.
If Tanya eats candies from the box, then the box itself remains in place, but there is no more candies in it. In other words, Tanya always eats all the candies from the box and candies in the boxes are not refilled.
It is known that Tanya cannot eat candies of the same color one after another (that is, the colors of candies in two consecutive boxes from which she eats candies are always different). In addition, Tanya's appetite is constantly growing, so in each next box from which she eats candies, there should be strictly more candies than in the previous one.
Note that for the first box from which Tanya will eat candies, there are no restrictions on the color and number of candies.
Tanya wants to eat at least $k$ candies. What is the minimum number of seconds she will need? Remember that she eats candies instantly, and time is spent only on movements.
输入格式
The first line contains three integers $n$ , $s$ and $k$ ( $1 \le n \le 50$ , $1 \le s \le n$ , $1 \le k \le 2000$ ) — number of the boxes, initial position of Tanya and lower bound on number of candies to eat. The following line contains $n$ integers $r_i$ ( $1 \le r_i \le 50$ ) — numbers of candies in the boxes. The third line contains sequence of $n$ letters 'R', 'G' and 'B', meaning the colors of candies in the correspondent boxes ('R' for red, 'G' for green, 'B' for blue). Recall that each box contains candies of only one color. The third line contains no spaces.
输出格式
Print minimal number of seconds to eat at least $k$ candies. If solution doesn't exist, print "-1".
输入输出样例
输入 #1
5 3 10 1 2 3 4 5 RGBRR
输出 #1
4
输入 #2
2 1 15 5 6 RG
输出 #2
-1
The sequence of actions of Tanya for the first example:
- move from the box $3$ to the box $2$ ;
- eat candies from the box $2$ ;
- move from the box $2$ to the box $3$ ;
- eat candy from the box $3$ ;
- move from the box $3$ to the box $4$ ;
- move from the box $4$ to the box $5$ ;
- eat candies from the box $5$ .
Since Tanya eats candy instantly, the required time is four seconds.
- move from the box $3$ to the box $2$ ;
- eat candies from the box $2$ ;
- move from the box $2$ to the box $3$ ;
- eat candy from the box $3$ ;
- move from the box $3$ to the box $4$ ;
- move from the box $4$ to the box $5$ ;
- eat candies from the box $5$ .
Since Tanya eats candy instantly, the required time is four seconds.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted