码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces Round #655 (Div. 2) A. Omkar and Completion

时间:2020-07-12 12:39:13      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:positive   follow   any   not   first   this   span   std   很多   

time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You have been blessed as a child of Omkar. To express your gratitude, please solve this problem for Omkar!

An array aa of length nn is called complete if all elements are positive and don‘t exceed 10001000, and for all indices xx,yy,zz (1x,y,zn1≤x,y,z≤n), ax+ayazax+ay≠az (not necessarily distinct).

You are given one integer nn. Please find any complete array of length nn. It is guaranteed that under given constraints such array exists.

Input

Each test contains multiple test cases. The first line contains tt (1t10001≤t≤1000)  — the number of test cases. Description of the test cases follows.

The only line of each test case contains one integer nn (1n10001≤n≤1000).

It is guaranteed that the sum of nn over all test cases does not exceed 10001000.

Output

For each test case, print a complete array on a single line. All elements have to be integers between 11 and 10001000 and for all indices xx,yy,zz (1x,y,zn1≤x,y,z≤n) (not necessarily distinct), ax+ayazax+ay≠az must hold.

If multiple solutions exist, you may print any.

Example
input
Copy
2
5
4
output
Copy
1 5 3 77 12
384 384 44 44
Note

It can be shown that the outputs above are valid for each test case. For example, 44+4438444+44≠384.

Below are some examples of arrays that are NOT complete for the 1st test case:

[1,2,3,4,5][1,2,3,4,5]

Notice that a1+a2=a3a1+a2=a3.

[1,3000,1,300,1][1,3000,1,300,1]

Notice that a2=3000>1000a2=3000>1000.

题意:给你一个n,输出保证每个元素不超过1000的n个元素,并且两元素之和不等于第三元素

解题思路:拿到题目,可能很多人的第一想法就是枚举,其实这是一个实打实的水题,算是本场的签到题吧,我们仔细分析就能得到,每个元素都相等且小于1k,那就满足题意了,人家没说元素不能重复,所以直接打印n个相同的元素就行。

代码如下:

#include<cstdio>
int t,n;int main(void)
{
    
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        for(int i=0;i<n-1;++i)
        {
            printf("1 ");
        }
        puts("1");
    }
}

 

Codeforces Round #655 (Div. 2) A. Omkar and Completion

标签:positive   follow   any   not   first   this   span   std   很多   

原文地址:https://www.cnblogs.com/YHH520/p/13287325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!