CF每日一水

Posted 雾晴

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF每日一水相关的知识,希望对你有一定的参考价值。

CF每日一水

A. Madoka and Math Dad

time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Madoka finally found the administrator password for her computer. Her father is a well-known popularizer of mathematics, so the password is the answer to the following problem.

Find the maximum decimal number without zeroes and with no equal digits in a row, such that the sum of its digits is n.

Madoka is too tired of math to solve it herself, so help her to solve this problem!

Input
Each test contains multiple test cases. The first line contains a single integer t (1≤t≤1000) — the number of test cases. Description of the test cases follows.

The only line of each test case contains an integer n (1≤n≤1000) — the required sum of the digits.

Output
For each test case print the maximum number you can obtain.

Example
inputCopy
5
1
2
3
4
5
outputCopy
1
2
21
121
212
Note

The only numbers with the sum of digits equal to 2 without zeros are 2 and 11. But the last one has two ones in a row, so it’s not valid. That’s why the answer is 2.

The only numbers with the sum of digits equal to 3 without zeros are 111, 12, 21, and 3. The first one has 2 ones in a row, so it’s not valid. So the maximum valid number is 21.

The only numbers with the sum of digits equals to 4 without zeros are 1111, 211, 121, 112, 13, 31, 22, and 4. Numbers 1111, 211, 112, 22 aren’t valid, because they have some identical digits in a row. So the maximum valid number is 121.

下面是翻译


大佬的思路:
题目要求构造各位不包含0,各位相加等于n且相邻两位不同的最大的数,想要构造最大的数最好就是位数多,位数越多构造出来的数越大,根据要求相邻两位不能相同,所以取两个最小的正整数1和2来构造答案。
可以发现,构造出来的答案一定是1和2交替出现,既然要交替出现,那么1和2的数量最多相差一个。

菜鸡我的思路

选取最小的数,尽可能的让最后的长度最长,也就是说位数越长越好,位数越长意味着可使用的数就小了,其实题目中说“不能包含零”,“两字符不能重复”就已经给了思路了,就1和2拼接就完事了,代码如下:

#我这里只是读取一个数字,题目要求n个,加个循环就是,
需求过于简单,不予实现

n=int(input()) 
t=n//3
l=n%3
s="21"*t
str=s
if l==1:
    str="1"+s
elif l==2:
    str=s+"2"
print(str)

以上是关于CF每日一水的主要内容,如果未能解决你的问题,请参考以下文章

每日一水之 luoguP1138

每日一水之 luoguP1182 数列分段Section II

Openjudge 1.13-23:区间内的真素数(每日一水)

每日一水之 luogu2907 [USACO08OPEN]农场周围的道路Roads Around The Farm

每日cf计划

CF每日一练(2.10)