A11086 | From Y to Y
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
From beginning till end, this message has been waiting to be conveyed.
For a given unordered multiset of $n$ lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of length $1$ , and repeat the following operation $n-1$ times:
- Remove any two elements $s$ and $t$ from the set, and add their concatenation $s+t$ to the set.
The cost of such operation is defined to be , where $f(s,c)$ denotes the number of times character $c$ appears in string $s$ .
Given a non-negative integer $k$ , construct any valid non-empty set of no more than $100000$ letters, such that the minimum accumulative cost of the whole process is exactly $k$ . It can be shown that a solution always exists.
For a given unordered multiset of $n$ lowercase English letters ("multi" means that a letter may appear more than once), we treat all letters as strings of length $1$ , and repeat the following operation $n-1$ times:
- Remove any two elements $s$ and $t$ from the set, and add their concatenation $s+t$ to the set.
The cost of such operation is defined to be , where $f(s,c)$ denotes the number of times character $c$ appears in string $s$ .
Given a non-negative integer $k$ , construct any valid non-empty set of no more than $100000$ letters, such that the minimum accumulative cost of the whole process is exactly $k$ . It can be shown that a solution always exists.
输入格式
The first and only line of input contains a non-negative integer $k$ ( $0<=k<=100000$ ) — the required minimum cost.
输出格式
Output a non-empty string of no more than $100000$ lowercase English letters — any multiset satisfying the requirements, concatenated to be a string.
Note that the printed string doesn't need to be the final concatenated string. It only needs to represent an unordered multiset of letters.
Note that the printed string doesn't need to be the final concatenated string. It only needs to represent an unordered multiset of letters.
输入输出样例
输入 #1
12
输出 #1
abababab
输入 #2
3
输出 #2
codeforces
For the multiset {'a', 'b', 'a', 'b', 'a', 'b', 'a', 'b'}, one of the ways to complete the process is as follows:
- {"ab", "a", "b", "a", "b", "a", "b"}, with a cost of $0$ ;
- {"aba", "b", "a", "b", "a", "b"}, with a cost of $1$ ;
- {"abab", "a", "b", "a", "b"}, with a cost of $1$ ;
- {"abab", "ab", "a", "b"}, with a cost of $0$ ;
- {"abab", "aba", "b"}, with a cost of $1$ ;
- {"abab", "abab"}, with a cost of $1$ ;
- {"abababab"}, with a cost of $8$ .
The total cost is $12$ , and it can be proved to be the minimum cost of the process.
- {"ab", "a", "b", "a", "b", "a", "b"}, with a cost of $0$ ;
- {"aba", "b", "a", "b", "a", "b"}, with a cost of $1$ ;
- {"abab", "a", "b", "a", "b"}, with a cost of $1$ ;
- {"abab", "ab", "a", "b"}, with a cost of $0$ ;
- {"abab", "aba", "b"}, with a cost of $1$ ;
- {"abab", "abab"}, with a cost of $1$ ;
- {"abababab"}, with a cost of $8$ .
The total cost is $12$ , and it can be proved to be the minimum cost of the process.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted