洛谷题目链接:[POI2007]TET-Tetris Attack

题目描述

A puzzle called "Tetris Attack" has lately become a very popular game in Byteotia. The game itself is highlysophisticated, so we shall only introduce its simplified rules: the player is given a stack of \(2n\) elements, placedone on another and marked with \(n\) different symbols. Exactly two elements of the stack are marked with eachsymbol. A player's move consists in swapping two neighbouring elements, ie. interchanging them. If, as aresult of the swap, there are some two neighbouring elements marked with the same symbol, they are bothremoved from the stack. Then all the elements that have been above them fall down in consequence and mayvery well cause another removals. The player's goal is emptying the stack in the least possible number ofmoves.

TaskWrite a programme that:

reads the description of the initial stack content from the standard input, finds a solution with the minimum number of moves possible, writes out the outcome to the standard output.

给定一个长度为2n的序列,1~n各出现两次,可以交换相邻两项,两个同样的数放在一起会对消,求把所有数对消的最小交换次数。

温馨提示,输出方案。

输入输出格式

输入格式:

In the first line of the standard input there is one integer \(n\), \(1\le n\le 50\ 000\).

The following \(2n\) lines describe theinitial content of the stack. The \((i+1)\)'th line contains one integer \(a_i\) -the symbol which the \(i\)'th (\(1\le a_i\le n\))element from the bottom is marked with. Each symbol appears in the stack exactly twice. Moreover, notwo identical symbols neighbour initially. The test data is well chosen so that a solution with no more than \(1\ 000\ 000\) moves exists.

输出格式:

A solution with the minimum number of moves possible should be written out to the standard output asfollows. The first line should contain one integer \(m\) -the minimum number of moves. The following \(m\) should describe the optimal solution itself, i.e. a sequence of \(m\) integers \(p_1,\cdots,p_m\)​), one in each line. \(p_i\) denotes that in \(i\)'th move the player has chosen to swap the \(p_i\)'th and \((p_i+1)\)'th elements from the bottom.

If more than one optimal solution exists, your programme should write out any one of them.

输入输出样例

输入样例#1:

5

5

2

3

1

4

1

4

3

5

2

输出样例#1:

2

5

2

说明

SPJ返回WA:Something Left为方案错误

温馨提示,输出方案。


一句话题意: 给定一个长度为\(2n\)的序列,\(1\)~\(n\)各出现两次,可以交换相邻两项,两个同样的数放在一起会对消,求把所有数对消的最小交换次数.


题解: 先直接讲做法吧:

直接从\(1\)到\(2n\)读入每个值,当这个值第一次出现就向树状数组这个位置+1,并记录下这个值第一次出现的位置. 当这个值第二次出现的时候计算这个值与它上一次出现的位置之间加入进的值,并把上一次修改的位置-1.

那么这个方法为什么是正确的呢? (其实我自己做这道题的时候也是大力猜的结论233)

我们可以简单证明一下(可能有点伪证的成分,感性理解一下):

如果我们要使两个相同的数字合并,那么这两个数字中间的数字一定要合并.

所以这样在我们第二遍扫到一个数字的时候,要合并这个数字,就至少要将这个数字之间的数字都合并掉.

然而在树状数组中这个区间内只会有只出现过一次的数字,因为如果有还没计算的数字,就会在前面的循环中扫到.

这样的话为了让这个数字能合并,至少需要让它与之前每一个数字交换一次,不然一定会有数字夹在这两个数字中间导致不能消掉这个数字.

所以这样算出来的答案是可以保证最优的

然后在输出方案的时候就每次算出距离就可以了,可以自己想一下怎么模拟算位置.

#include<bits/stdc++.h>
using namespace std;
const int N=50000+5; int n, c[N*2], ans = 0, pos[N], stk[N*100], top = 0, res, size = 0, p; int lowbit(int x){ return -x & x; }
void update(int x,int val){ for(;x<=n*2;x+=lowbit(x)) c[x] += val; } int query(int x){
int res;
for(res = 0;x;x-=lowbit(x)) res += c[x];
return res;
} int main(){
int x; scanf("%d", &n);
for(int i=1;i<=n*2;i++){
scanf("%d", &x);
if(pos[x]){
update(pos[x], -1), res = query(i)-query(pos[x]-1);
ans += res, p = i;
while(res > 0) stk[++top] = p-size-1, p--, res--;
size += 2;
}
else pos[x] = i, update(i, 1);
}
printf("%d\n", ans);
for(int i=1;i<=top;i++) printf("%d\n", stk[i]);
return 0;
}

[洛谷P3460] [POI2007]TET-Tetris Attack的更多相关文章

  1. [洛谷3457][POI2007]POW-The Flood

    洛谷题目链接:[POI2007]POW-The Flood 题意翻译 Description 你手头有一张该市的地图.这张地图是边长为 m∗n 的矩形,被划分为m∗n个1∗1的小正方形.对于每个小正方 ...

  2. 洛谷P3459 [POI2007]MEG-Megalopolis(树链剖分,Splay)

    洛谷题目传送门 正解是树状数组维护dfn序上的前缀和,这样的思路真是又玄学又令我惊叹( 我太弱啦,根本想不到)Orz各路Dalao 今天考了这道题,数据范围还比洛谷的小,只有\(10^5\)(害我复制 ...

  3. 洛谷P3459 [POI2007]MEG-Megalopolis [树链剖分]

    题目传送门 MEG 题目描述 Byteotia has been eventually touched by globalisation, and so has Byteasar the Postma ...

  4. 洛谷 P3462 [POI2007]ODW-Weights

    题面: https://www.luogu.org/problemnew/show/P3462 https://www.lydsy.com/JudgeOnline/problem.php?id=111 ...

  5. 洛谷 P3456 [POI2007]GRZ-Ridges and Valleys

    P3456 [POI2007]GRZ-Ridges and Valleys 题意翻译 给定一个地图,为小朋友想要旅行的区域,地图被分为n*n的网格,每个格子(i,j) 的高度w(i,j)是给定的.若两 ...

  6. 洛谷 P3455 [POI2007]ZAP-Queries (莫比乌斯函数)

    题目链接:P3455 [POI2007]ZAP-Queries 题意 给定 \(a,b,d\),求 \(\sum_{x=1}^{a} \sum_{y=1}^{b}[gcd(x, y) = d]\). ...

  7. 洛谷P3459 [POI2007]MEG-Megalopolis [2017年6月计划 树上问题02]

    [POI2007]MEG-Megalopolis 题目描述 Byteotia has been eventually touched by globalisation, and so has Byte ...

  8. 【刷题】洛谷 P3455 [POI2007]ZAP-Queries

    题目描述 Byteasar the Cryptographer works on breaking the code of BSA (Byteotian Security Agency). He ha ...

  9. 洛谷P3457 [POI2007]POW-The Flood [并查集,模拟]

    题目传送门 pow 题意翻译 Description 你手头有一张该市的地图.这张地图是边长为 m∗n 的矩形,被划分为m∗n个1∗1的小正方形.对于每个小正方形,地图上已经标注了它的海拔高度以及它是 ...

随机推荐

  1. [leetcode-666-Path Sum IV]

    If the depth of a tree is smaller than 5, then this tree can be represented by a list of three-digit ...

  2. nodejs笔记--与Redis的交互篇(六)

    原文地址:http://www.cnblogs.com/zhongweiv/p/node_redis.html 安装前准备 win64: Install python: http://www.pyth ...

  3. TCP系列37—Keep Alive—1、TCP存活检测

    一.TCP存活(keepalive)检测的背景 对于TCP设计来说,如果一个客户端和服务器端建立连接后,不在进行数据传输,那么这个连接将会一直存在下去,理论上即使中间的路由器崩溃重启.或者中间的网络线 ...

  4. 【OSG】 报错:丢失osg100-osgDB.dll

    如果你bin目录已经添加到了环境变量的path里面,还报这个错的话. 或许你重启一下电脑就可以了..我就这么解决的.

  5. 【week2】 词频统计第一次更新

    词频统计: 对每个功能预计时间: 功能 预计(min) 实际(min) 数据流读入 20 40 正则规范字符串 15 20 排序 30 45 输出 20 30 其他   25 词频统计psp 日期 类 ...

  6. ci tp重定向

    server { listen 80; #listen [::]:80; server_name tpblog.yeves.com; index index.html index.htm index. ...

  7. Python实现FTP服务功能

    本文从以下三个方面, 阐述Python如何搭建FTP服务器 一. Python搭建FTP服务器 二. FTP函数释义 三. 查看目录结构 四. 上传下载程序 一. Python搭建FTP服务器 1. ...

  8. kaptcha验证码在windows下正常,在linux下无法显示

    有几种情况,记录备忘: 1.两个环境字体不一样,linux环境下可能没有字体,重新安装字体即可. 2.tomcat等容器下没有temp目录,手动建立即可. 3.如果报找不到类的错误,检查JDK是否正确 ...

  9. BFS的小结

    写这类搜索题.首先感觉要有个框架.比如我的框架对于BFS来说(对于DFS,我想有两个一个是递归版一个是栈版).这里是BFS小结.所以介绍一下BFS.我的框架.(也是搜集了网上许多神人的作品.) 1:节 ...

  10. 【HUD-5790】Prefix (主席树+tire)

    似乎是归队赛的最后一道题. 由于当时以为是公共字串所以没写555555,其实是求公共前缀. 做法是建立tire,把tire上的点编号看成是值,查询第l到第r个字符串的区间内不重复的值的个数.建立主席树 ...