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.
A single line contains integer n (1 ≤ n ≤ 5000) — the number of students at an exam.
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.
6
6
1 5 3 6 2 4
3
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 }