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

HDU6235题解

时间:2018-03-11 12:03:45      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:log   cache   include   span   printf   hdu   题意   sub   ems   

这是一道水题
题意:

给出1...n的数列,重新排列成满足pi%(pi-pi-2)==0的数列

题解:
其实只要求pi-pi-2=1就可以了。代码如下

#include<cstdio>
#include<cstring>
int ans[100010];
int main(){
    int n;
    scanf("%d",&n);
    for(int i=1;i<=n;i++){
        int cache,jis=0;
        scanf("%d",&cache);
        memset(ans,0,sizeof(ans));
        for(int j=1;j<=cache;j++) if(j%2) ans[j]=++jis;
        for(int j=1;j<=cache;j++) if(!ans[j]) ans[j]=++jis;
        for(int j=1;j<=cache;j++) printf("%d ",ans[j]);
        puts("");
    }
}

HDU6235题解

标签:log   cache   include   span   printf   hdu   题意   sub   ems   

原文地址:https://www.cnblogs.com/jiaangk/p/8543010.html

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