zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    SSH、SCP和SFTP 解析(转)
    SQL Server数据库partition by 与ROW_NUMBER()函数使用详解 (转载)
    Git版本控制与工作流详解(转)
    IQueryable,IEnumberable,.AsEnumerable() 和 .AsQueryable() (转载)
    ASP.NET 中Http处理流程与 HttpModule,HttpHandler学习之初步认知
    xml Node 是否存在
    MVC-前台调用后台action 传递upload file 参数问题
    ResXResourceWriter 与ResourceWriter
    "= ="与 equals 的区别 摘录
    jpg文件格式分析
  • 原文地址:https://www.cnblogs.com/xz816111/p/4438957.html
Copyright © 2011-2022 走看看