A10985 | String Compression
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ivan wants to write a letter to his friend. The letter is a string $s$ consisting of lowercase Latin letters.
Unfortunately, when Ivan started writing the letter, he realised that it is very long and writing the whole letter may take extremely long time. So he wants to write the compressed version of string $s$ instead of the string itself.
The compressed version of string $s$ is a sequence of strings $c_{1},s_{1},c_{2},s_{2},...,c_{k},s_{k}$ , where $c_{i}$ is the decimal representation of number $a_{i}$ (without any leading zeroes) and $s_{i}$ is some string consisting of lowercase Latin letters. If Ivan writes string $s_{1}$ exactly $a_{1}$ times, then string $s_{2}$ exactly $a_{2}$ times, and so on, the result will be string $s$ .
The length of a compressed version is $|c_{1}|+|s_{1}|+|c_{2}|+|s_{2}|...\ |c_{k}|+|s_{k}|$ . Among all compressed versions Ivan wants to choose a version such that its length is minimum possible. Help Ivan to determine minimum possible length.
Unfortunately, when Ivan started writing the letter, he realised that it is very long and writing the whole letter may take extremely long time. So he wants to write the compressed version of string $s$ instead of the string itself.
The compressed version of string $s$ is a sequence of strings $c_{1},s_{1},c_{2},s_{2},...,c_{k},s_{k}$ , where $c_{i}$ is the decimal representation of number $a_{i}$ (without any leading zeroes) and $s_{i}$ is some string consisting of lowercase Latin letters. If Ivan writes string $s_{1}$ exactly $a_{1}$ times, then string $s_{2}$ exactly $a_{2}$ times, and so on, the result will be string $s$ .
The length of a compressed version is $|c_{1}|+|s_{1}|+|c_{2}|+|s_{2}|...\ |c_{k}|+|s_{k}|$ . Among all compressed versions Ivan wants to choose a version such that its length is minimum possible. Help Ivan to determine minimum possible length.
输入格式
The only line of input contains one string $s$ consisting of lowercase Latin letters ( $1<=|s|<=8000$ ).
输出格式
Output one integer number — the minimum possible length of a compressed version of $s$ .
输入输出样例
输入 #1
aaaaaaaaaa
输出 #1
3
输入 #2
abcab
输出 #2
6
输入 #3
cczabababab
输出 #3
7
In the first example Ivan will choose this compressed version: $c_{1}$ is 10, $s_{1}$ is a.
In the second example Ivan will choose this compressed version: $c_{1}$ is 1, $s_{1}$ is abcab.
In the third example Ivan will choose this compressed version: $c_{1}$ is 2, $s_{1}$ is c, $c_{2}$ is 1, $s_{2}$ is z, $c_{3}$ is 4, $s_{3}$ is ab.
In the second example Ivan will choose this compressed version: $c_{1}$ is 1, $s_{1}$ is abcab.
In the third example Ivan will choose this compressed version: $c_{1}$ is 2, $s_{1}$ is c, $c_{2}$ is 1, $s_{2}$ is z, $c_{3}$ is 4, $s_{3}$ is ab.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted