博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 221 A. Little Elephant and Function
阅读量:6333 次
发布时间:2019-06-22

本文共 1480 字,大约阅读时间需要 4 分钟。

A. Little Elephant and Function
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Little Elephant enjoys recursive functions.

This time he enjoys the sorting function. Let a is a permutation of an integers from 1 to n, inclusive, and ai denotes the i-th element of the permutation. The Little Elephant's recursive function f(x), that sorts the first x permutation's elements, works as follows:

  • If x = 1, exit the function.
  • Otherwise, call f(x - 1), and then make swap(ax - 1, ax) (swap the x-th and (x - 1)-th elements of a).

The Little Elephant's teacher believes that this function does not work correctly. But that-be do not get an F, the Little Elephant wants to show the performance of its function. Help him, find a permutation of numbers from 1 to n, such that after performing the Little Elephant's function (that is call f(n)), the permutation will be sorted in ascending order.

Input

A single line contains integer n (1 ≤ n ≤ 1000) — the size of permutation.

Output

In a single line print n distinct integers from 1 to n — the required permutation. Numbers in a line should be separated by spaces.

It is guaranteed that the answer exists.

Examples
input
1
output
1
input
2
output
2 1

 题意:输出那个程序的执行结果

#include
using namespace std;int main(){ int n; scanf("%d",&n); printf("%d ",n); for(int i=1;i

 

转载于:https://www.cnblogs.com/TheRoadToTheGold/p/6847955.html

你可能感兴趣的文章
C++学习教程从零开始(四)——赋值操作符
查看>>
Python基础知识学习
查看>>
MediaWiki上传文件的配置
查看>>
使用Golang实现PHP的Addslashes和Stripslashes
查看>>
通过js动态清空、增加、删除、修改下拉框中的元素
查看>>
JQuery - Hello World
查看>>
ASM 介绍
查看>>
智能指针浅析
查看>>
[转载]cocos2d-x触屏事件的分析
查看>>
Golang实现简单tcp服务器03 -- 文本广播式聊天服务器/客户端
查看>>
command &>/dev/null 的作用
查看>>
Octree优化场景
查看>>
awk用法小结
查看>>
HBase中的时间维度
查看>>
riak_core中的通知集群中的所有节点更新集群信息
查看>>
深入分析各种语言开发网店系统购物系统的优劣势
查看>>
springboot加载配置文件
查看>>
矩阵图的深度广度遍历
查看>>
Spring Ioc 源码分析(二)- bean的实例化
查看>>
MySQL批量SQL插入性能优化
查看>>