CF877C.Slava and tanks
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Slava plays his favorite game "Peace Lightning". Now he is flying a bomber on a very specific map.
Formally, map is a checkered field of size 1×n , the cells of which are numbered from 1 to n , in each cell there can be one or several tanks. Slava doesn't know the number of tanks and their positions, because he flies very high, but he can drop a bomb in any cell. All tanks in this cell will be damaged.
If a tank takes damage for the first time, it instantly moves to one of the neighboring cells (a tank in the cell n can only move to the cell n−1 , a tank in the cell 1 can only move to the cell 2 ). If a tank takes damage for the second time, it's counted as destroyed and never moves again. The tanks move only when they are damaged for the first time, they do not move by themselves.
Help Slava to destroy all tanks using as few bombs as possible.
输入格式
The first line contains a single integer n ( 2<=n<=100000 ) — the size of the map.
输出格式
In the first line print m — the minimum number of bombs Slava needs to destroy all tanks.
In the second line print m integers k1,k2,...,km . The number ki means that the i -th bomb should be dropped at the cell ki .
If there are multiple answers, you can print any of them.
输入输出样例
输入#1
2
输出#1
3 2 1 2
输入#2
3
输出#2
4 2 1 3 2