• CF Exam (数学)


     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.

    Sample test(s)
    input
    6
    output
    6
    1 5 3 6 2 4
    input
    3
    output
    2
    1 3

    只有前三个情况特殊,后面都是N,特判一下,先输出偶数再输出奇数。

     1 #include <iostream>
     2 #include <cmath>
     3 #include <cstring>
     4 #include <cstdio>
     5 #include <string>
     6 #include <algorithm>
     7 #include <cctype>
     8 #include <queue>
     9 #include <map>
    10 using    namespace    std;
    11 
    12 int    main(void)
    13 {
    14     int    n,i;
    15 
    16     while(cin >> n)
    17     {
    18         if(n == 1 || n == 2)
    19             cout << "1" << endl << "1" << endl;
    20         else    if(n == 3)
    21             cout << "2" << endl << "1 3" << endl;
    22         else
    23         {
    24             cout << n << endl;
    25             for(i = 2;i <= n;i += 2)
    26                 cout << i << ' ';
    27             for(i = 1;i <= n;i += 2)
    28                 if(i + 2 > n)
    29                     cout << i;
    30                 else
    31                     cout << i << ' ';
    32             cout << endl;
    33         }
    34     }
    35 
    36     return    0;
    37 }
  • 相关阅读:
    磁盘 inodes 不足 Free inodes is less than 20% on volume
    记录一次Nginx使用第三方模块fair导致的线上故障排错
    xml 特殊字符 导致的 solr 数据导入异常
    Jenkins 定时备份插件 ThinBackup
    Elasticsearch 节点磁盘使用率过高,导致ES集群索引无副本
    Elasticsearch定时删除索引第二版
    js for in 获得遍历数组索引和对象属性
    js函数作用域
    django 1.11.1 连接MySQL
    angular 4 和django 1.11.1 前后端交互 总结
  • 原文地址:https://www.cnblogs.com/xz816111/p/4438957.html
Copyright © 2020-2023  润新知