A10887 | Fake News (hard)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Now that you have proposed a fake post for the HC $^{2}$ Facebook page, Heidi wants to measure the quality of the post before actually posting it. She recently came across a (possibly fake) article about the impact of fractal structure on multimedia messages and she is now trying to measure the self-similarity of the message, which is defined as
where the sum is over all nonempty strings $p$ and  is the number of occurences of $p$ in $s$ as a substring. (Note that the sum is infinite, but it only has a finite number of nonzero summands.)
Heidi refuses to do anything else until she knows how to calculate this self-similarity. Could you please help her? (If you would like to instead convince Heidi that a finite string cannot be a fractal anyway – do not bother, we have already tried.)
where the sum is over all nonempty strings $p$ and  is the number of occurences of $p$ in $s$ as a substring. (Note that the sum is infinite, but it only has a finite number of nonzero summands.)
Heidi refuses to do anything else until she knows how to calculate this self-similarity. Could you please help her? (If you would like to instead convince Heidi that a finite string cannot be a fractal anyway – do not bother, we have already tried.)
输入格式
The input starts with a line indicating the number of test cases $T$ ( $1<=T<=10$ ). After that, $T$ test cases follow, each of which consists of one line containing a string $s$ ( $1<=|s|<=100000$ ) composed of lowercase letters (a-z).
输出格式
Output $T$ lines, every line containing one number – the answer to the corresponding test case.
输入输出样例
输入 #1
4 aa abcd ccc abcc
输出 #1
5 10 14 12
A string $s$ contains another string $p$ as a substring if $p$ is a contiguous subsequence of $s$ . For example, ab is a substring of cab but not of acb.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted