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

BNUOJ 52503 Disdain Chain

时间:2017-05-04 00:01:03      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:turn   its   nbsp   dai   using   style   names   code   答案   

暴力,结论。

本打算写一发暴力,然后直接交答案,之后发现无论$n$等于多少,每种图都存在长度为$n$的路径,中间还一直以为自己暴力写错了。

#include<bits/stdc++.h>
using namespace std;
int T,n;
int main()
{
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        for(int i=1; i<=n; i++)
        {
            int p = n*(n-1)/2;
            if(i<n) printf("%d\n",0);
            else printf("%d\n",1<<p);
        }
    }
    return 0;
}

 

BNUOJ 52503 Disdain Chain

标签:turn   its   nbsp   dai   using   style   names   code   答案   

原文地址:http://www.cnblogs.com/zufezzt/p/6804431.html

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