每日一题E 2015/6/2 21:50

采用插空法,注意特殊数据,1,2,3,4  尤其是3的情况输出应为 3 1 4 2败就败在这里了。其他情况均可以把1放在a[0]内,唯独3不可以。
#include<stdio.h>
#include<math.h>
#include<stdlib.h>

int main()
{
    int n;
    scanf("%d", &n);
    int a[5005] = {0};
    int b[5005] = {0};
    int i;
    int j;
       if( n == 4)
    {
        printf("4\n");
        printf("3 1 4 2");
    }
    else if( n == 3)
    {
        printf("2\n");
        printf("1 3");
    }
    else if( n == 2)
    {
        printf("1\n");
        printf("1");
    }
    else if(n == 1)
    {
        printf("1\n");
        printf("1");
    }
    else
    {
        for(i = 0, j = 1 ; j <= (n +1 )/ 2 ; i += 2, j++)
        {
            a[i] = j;
        }
        for(i = 1; j <= n; j++, i+=2 )
        {
            a[i] = j;
        }
        for(i = 0 ; a[i] != 0; i++);
        printf("%d\n", i);
        for(i = 0 ; a[i] != 0; i++)
        {
            printf("%d ",a[i]);
        }
    }

    return 0;
}
</pre><pre>

Description

An exam for n students will take place in a long and narrow room, so the students will sit in a line in some order. The teacher suspects that students with adjacent numbers (i and i + 1) always studied side by side and became friends and if they take an exam sitting next to each other, they will help each other for sure.

Your task is to choose the maximum number of students and make such an arrangement of students in the room that no two students with adjacent numbers sit side by side.

Input

A single line contains integer n (1 ≤ n ≤ 5000) — the number of students at an exam.

Output

In the first line print integer k — the maximum number of students who can be seated so that no two students with adjacent numbers sit next to each other.

In the second line print k distinct integers a1, a2, ..., ak (1 ≤ ai ≤ n), where ai is the number of the student on the i-th position. The students on adjacent positions mustn't have adjacent numbers. Formally, the following should be true: |ai - ai + 1| ≠ 1 for all i from 1 tok - 1.

If there are several possible answers, output any of them.

Sample Input

Input
6
Output
6
1 5 3 6 2 4
Input
3
Output
2
1 3

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值