博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #275 (Div. 2) C
阅读量:5934 次
发布时间:2019-06-19

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

题目传送门:http://codeforces.com/contest/483/problem/C

题意分析:题目意思没啥好说的。

去搞排列列举必须TLE。那么就想到构造。 1。n。2。n-1。3。n-2这个样子。

k/2就是须要交换的元素对数,还须要考虑一下k的奇偶去推断没交换的元素是顺序输出还是逆序输出。自己尝试下几个数据就明确了。

代码:

#include 
#include
#include
#include
#include
using namespace std;typedef long long LL;int p[100005];int main(){ int n,k; while(cin>>n>>k) { for(int i=0; i
=flag; i--) { printf("%d ",p[i]); } } if(x%2==1) { for(int i=flag; i<=temp; i++) { printf("%d ",p[i]); } } printf("\n"); }}

转载地址:http://jlctx.baihongyu.com/

你可能感兴趣的文章
负载均衡----实现配置篇(Nginx)
查看>>
Hive的基本介绍
查看>>
sql server 2000 sp3 数据库复制 修改sp_MSget_repl_commands
查看>>
openlayer9 http://hi.baidu.com/perneter/blog/item/194f1399ba4135056e068cde.html
查看>>
android系统常用Uri
查看>>
今天碰到一个神经病,留念,以后少惹这种人!
查看>>
4. Median of Two Sorted Arrays
查看>>
HBase1.0.1.1 API与原来有所不同
查看>>
转-JS之Window对象
查看>>
fread和fwrite函数功能
查看>>
Github恶搞之自定义你的contribution图表
查看>>
TypeScript学习笔记(五):接口
查看>>
Unity3D之Mecanim动画系统学习笔记(五):Animator Controller
查看>>
关于Chrome谷歌浏览器开发者工具网络Network中返回无数据的问题
查看>>
Handshake failed due to invalid Upgrade header: null 解决方案
查看>>
Windows API 教程(七) hook 钩子监听
查看>>
crontab 在指定时间范围每隔2小时执行一次和指定时间执行实例
查看>>
[转载]---从30岁到35岁:为你的生命多积累一些厚度
查看>>
工作,但别忘了生活
查看>>
线程之死循环。
查看>>