• codeforces 534 A. Exam


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

    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.

    题意是有n个数(1..n),问构造一个最长的数列,使得相邻元素的差的绝对值不等于1.

    1,2,3,4特判下。

    剩下的直接先走奇数,后走偶数构造即可。

    #include <iostream>
    #include <algorithm>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    using namespace std;
    const int N=5E3+7;
    int a[N],n,k,tmp;
    
    int main()
    {
        cin>>n;
        memset(a,0,sizeof(a));
        if (n<=2)
        {
    
            k = 1;
            a[1] = 1;
            cout<<k<<endl;
            cout<<a[1];
            return 0;
        }
        if (n==3)
        {
            k = 2;
            a[1] = 1;
            a[2] = 3;
            cout<<k<<endl;
            cout<<a[1]<<" "<<a[2];
            return 0;
        }
        if (n==4)
        {
            k = 4;
            a[1] = 2;
            a[2] = 4;
            a[3] = 1;
            a[4] = 3;
            cout<<k<<endl;
            cout<<a[1]<<" "<<a[2]<<" "<<a[3]<<" "<<a[4];
            return 0;
        }
         tmp = (n+1)/2;
        for ( int i = 1 ; i <= n ; i++)
        {
    
            if (i<=tmp)
            {
                a[i] = 2*i-1;
            }
            else
            {
                a[i]=a[i-tmp]+1;
            }
        }
        cout<<n<<endl;
        for ( int i = 1 ; i <= n ; i++ )
            cout<<a[i]<<" ";
    
    
    
        return 0;
    }
  • 相关阅读:
    《高校后勤管理信息系统设计与实现》论文笔记五
    《高校后勤管理系统的设计与实现》论文笔记三
    《高校后勤管理系统的设计与实现》论文笔记二
    如何利用React.js开发出强大Web应用
    关于啤酒和尿布故事的真相
    以生活例子说明单线程与多线程
    未来哪些领域WiFi将成为刚需?
    CSS开发中的10个不要
    10年后编程还有意义吗?
    JavaEE中遗漏的10个最重要的安全控制
  • 原文地址:https://www.cnblogs.com/111qqz/p/4421601.html
Copyright © 2020-2023  润新知