地址:http://arc080.contest.atcoder.jp/tasks/arc080_c

题目:

E - Young Maids


Time limit : 2sec / Memory limit : 256MB

Score : 800 points

Problem Statement

Let N be a positive even number.

We have a permutation of (1,2,…,N)p=(p1,p2,…,pN). Snuke is constructing another permutation of (1,2,…,N)q, following the procedure below.

First, let q be an empty sequence. Then, perform the following operation until p becomes empty:

  • Select two adjacent elements in p, and call them x and y in order. Remove x and y from p (reducing the length of p by 2), and insert x and y, preserving the original order, at the beginning of q.

When p becomes empty, q will be a permutation of (1,2,…,N).

Find the lexicographically smallest permutation that can be obtained as q.

Constraints

  • N is an even number.
  • 2≤N≤2×105
  • p is a permutation of (1,2,…,N).

Input

Input is given from Standard Input in the following format:

N
p1 p2 pN

Output

Print the lexicographically smallest permutation, with spaces in between.

思路:

  不想自己写了,结合我代码看官方题解吧。

 #include <bits/stdc++.h>

 using namespace std;

 #define MP make_pair
#define PB push_back
typedef long long LL;
typedef pair<int,int> PII;
const double eps=1e-;
const double pi=acos(-1.0);
const int K=3e5+;
const int mod=1e9+; int n,vb[*K],vc[*K],ff[*K],hs[K],a[K];
//vb奇数,vc偶数
void push_down(int o)
{
if(ff[o])
{
swap(vb[o<<],vc[o<<]);
swap(vb[o<<|],vc[o<<|]);
ff[o<<]^=ff[o],ff[o<<|]^=ff[o];
ff[o]=;
}
}
void update(int o,int l,int r,int pos,int x)
{
if(l==r)
{
if(pos&) vb[o]=x,vc[o]=K;
else vb[o]=K,vc[o]=x;
return ;
}
int mid=l+r>>;
push_down(o);
if(pos<=mid) update(o<<,l,mid,pos,x);
else update(o<<|,mid+,r,pos,x);
vb[o]=min(vb[o<<],vb[o<<|]);
vc[o]=min(vc[o<<],vc[o<<|]);
}
void update2(int o,int l,int r,int nl,int nr)
{
if(l==nl&&r==nr)
{
ff[o]^=;swap(vb[o],vc[o]);
return ;
}
int mid=l+r>>;
push_down(o);
if(nr<=mid) update2(o<<,l,mid,nl,nr);
else if(nl>mid) update2(o<<|,mid+,r,nl,nr);
else update2(o<<,l,mid,nl,mid),update2(o<<|,mid+,r,mid+,nr);
vb[o]=min(vb[o<<],vb[o<<|]);
vc[o]=min(vc[o<<],vc[o<<|]);
}
int query(int o,int l,int r,int nl,int nr)
{
if(l==nl&&r==nr)return vb[o];
int mid=l+r>>;
push_down(o);
if(nr<=mid) return query(o<<,l,mid,nl,nr);
else if(nl>mid) return query(o<<|,mid+,r,nl,nr);
else return min(query(o<<,l,mid,nl,mid),query(o<<|,mid+,r,mid+,nr));
}
struct node
{
int l,r,pl,pr;
node(){}
node(int i,int j,int p,int q){l=i,r=j,pl=p,pr=q;}
bool operator<(const node &ta)const
{
if(a[pl]==a[ta.pl]) return a[pr]>a[ta.pr];
return a[pl]>a[ta.pl];
}
};
node sc(int l,int r)
{
int x=query(,,n,l,r);
update(,,n,hs[x],K);
if(hs[x]+<=r)
update2(,,n,hs[x]+,r);
int y=query(,,n,hs[x]+,r);
update(,,n,hs[y],K);
if(hs[y]+<=r)
update2(,,n,hs[y]+,r);
return node(l,r,hs[x],hs[y]);
}
priority_queue<node>q;
int main(void)
{
scanf("%d",&n);
for(int i=,mx=n*;i<=mx;i++) vb[i]=vc[i]=K;
for(int i=;i<=n;i++)
{
scanf("%d",a+i);
update(,,n,i,a[i]);
hs[a[i]]=i;
}
q.push(sc(,n));
while(q.size())
{
node tmp=q.top();
q.pop();
printf("%d %d ",a[tmp.pl],a[tmp.pr]);
if(tmp.pl->tmp.l) q.push(sc(tmp.l,tmp.pl-));
if(tmp.pl+<tmp.pr-) q.push(sc(tmp.pl+,tmp.pr-));
if(tmp.pr+<tmp.r) q.push(sc(tmp.pr+,tmp.r));
}
return ;
}

AtCoder Regular Contest 080 E - Young Maids的更多相关文章

  1. AtCoder Regular Contest 080 (ARC080) E - Young Maids 线段树 堆

    原文链接http://www.cnblogs.com/zhouzhendong/p/8934377.html 题目传送门 - ARC080 E - Young Maids 题意 给定一个长度为$n$的 ...

  2. AtCoder Regular Contest 080 E:Young Maids

    题目传送门:https://arc080.contest.atcoder.jp/tasks/arc080_c 题目翻译 给你一个\(n\)的排列\(p\),一个空序列\(q\),你每次可以从\(p\) ...

  3. AtCoder Regular Contest 080 [CDEF]

    C - 4-adjacent Time limit : 2sec / Memory limit : 256MB Problem Statement We have a sequence of leng ...

  4. AtCoder Regular Contest 080

    手贱去开了abc,这么无聊.直接arc啊 C - 4-adjacent Time limit : 2sec / Memory limit : 256MB Score : 400 points Prob ...

  5. 【递归】【线段树】【堆】AtCoder Regular Contest 080 E - Young Maids

    给你一个1~n的排列p,n是偶数,每次从中任选一对相邻的数出来,插到排列q的开头,如此循环,问你所能得到的字典序最小的排列q. 我们先确定q开头的两个数q1,q2,q1一定是p的奇数位的最小的数,而q ...

  6. AtCoder Regular Contest 080 D - Grid Coloring

    地址:http://arc080.contest.atcoder.jp/tasks/arc080_b 题目: D - Grid Coloring Time limit : 2sec / Memory ...

  7. AtCoder Regular Contest 080 C - 4-adjacent

    地址:http://arc080.contest.atcoder.jp/tasks/arc080_a 题目: C - 4-adjacent Time limit : 2sec / Memory lim ...

  8. AtCoder Regular Contest 094 (ARC094) CDE题解

    原文链接http://www.cnblogs.com/zhouzhendong/p/8735114.html $AtCoder\ Regular\ Contest\ 094(ARC094)\ CDE$ ...

  9. AtCoder Regular Contest 098

    AtCoder Regular Contest 098 C - Attention 题意 给定一个只包含"E","W"字符串,可以花一的花费使他们互相转换.选定 ...

随机推荐

  1. mysql解决乱码问题

    进入mysql(mysql -u root -p),查看当前数据库字符集(status;) 刚开始是latin1,所以乱码. vim /etc/my.cnf 两个节点添加如下: [client]def ...

  2. boost实用工具:typeof库 BOOST_TYPE BOOST_AUTO

    boost::typeof库中使用宏BOOST_TYPE和BOOST_AUTO来模拟C++11关键字typeof和auto  C++ Code  123456789101112131415161718 ...

  3. Ubuntu 编译安装搭配LNMP 环境

    这里用Nginx1.2.0+mysql5.6.33+php5.6.2搭配安装环境 ---------------------------------------------Nginx BEGIN--- ...

  4. 表空间_暂时表空间引起的错误:ora-01652 小例

    原创作品,出自 "深蓝的blog" 博客,深蓝的blog:http://blog.csdn.net/huangyanlong/article/details/46888243 报暂 ...

  5. nginx提高加载静态文件速度

    1.本来对于静态网页,我们不需要放在应用容器中,原因一时由于应用服务器是用来解析动态网页的,针对静态网页本来就性能不高,而且还会占用应用容器的资源,所以我们专门使用nginx用来解析静态网页.     ...

  6. AMD、CMD、CommonJs和 ES6对比

    AMD(异步模块定义)是RequireJS在推广过程中对模块定义的规范化产出. define(['package/lib'], function(lib){ function foo(){ lib.l ...

  7. 160314、MVC设计模式

    MVC的由来 精彩内容 MVC模式最早由Trygve Reenskaug在1978年提出 ,是施乐帕罗奥多研究中心(Xerox PARC)在20世纪80年代为程序语言Smalltalk发明的一种软件设 ...

  8. Struts2的简单的文件上传

    1文件上传的流程: 第一步:首先得用表单标签的<s:file>在客户端接收上传的文件例如: <%@ page language="java" import=&qu ...

  9. glibc-2.23_large_bin链接方式_浅析

    上面两个图应该合并为一个图,但是指针太多了,合并在一起看不清了,所以分成两张图 所有的块都通过fd和bk两个指针链接,但是为了加快查询速度,不同大小的chunk通过fd_nextsize和bk_nex ...

  10. ubuntu安装wine的方法

    使用命令行安装: 1.打开终端,使用命令:sudo apt-get install wine 2.它可能会出现选择哪个版本的安装,develop是开发版本,stable是稳定版本. 通常我们选择sta ...