Codeforces 849 C. From Y to Y (技巧)

网友投稿 654 2022-08-26

Codeforces 849 C. From Y to Y (技巧)

Codeforces 849 C. From Y to Y (技巧)

Description

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 ∑c∈{′a′,′b′,...,′z′}f(s,c)×f(t,c) , where f(s, c)Given a non-negative integer k, construct any valid non-empty set of no more than 100 000 letters, such that the minimum accumulative cost of the whole process is exactly k. It can be shown that a solution always exists.

Input

The first and only line of input contains a non-negative integer k (0 ≤ k ≤ 100 000) — the required minimum cost.

Output

Output a non-empty string of no more than 100 000 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.

Examples input

12

Examples output

abababab

题意

给定一个代价 k ,输出一个字符串满足根据公式合并 n−1 次所花费的代价和等于 k

思路

分析可知,不论我们挑选哪两个元素合并最终结果都是一样的。

且每一次合并的贡献只和相同字母的个数有关。

例如:

aaaaaa ,我们挑选任意一种合并方式,其结果为 1+2+3+4+5=15 ,即 cnt=len×(len−1)/2

因此,最终的代价 k 便由若干个 cnt

AC 代码

#includeusing namespace std;const int maxn = 1e5+10;int cnt[maxn];void init(){ for(int i=1; i<=10000; i++) cnt[i]=i*(i-1)/2;}void solve(int n){ if(!n) puts("ab"); else { int tot=0; while(n) { int i=1; while(n>=cnt[i])++i; --i; n-=cnt[i]; while(i--) printf("%c",tot+'a'); tot++; } putchar('\n'); }}int main(){ init(); int n; while(cin>>n) solve(n);}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:多态的成员特点(多态有哪些)
下一篇:Codeforces 851 D. Arpa and a list of numbers(技巧)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~