hihoCoder 1233 : Boxes(盒子)
hihoCoder #1233 : Boxes(盒子)
Description - 题目描述
There is a strange storehouse in PKU. In this storehouse there are n slots for boxes, forming a line. In each slot you can pile up any amount of boxes. The limitation is that you can only pile a smaller one above a bigger one, in order to keep balance. The slots are numbered from 1 to n. The leftmost one is slot 1.
At first there is exactly one box in each slot. The volume of the box in slot i is vi. As a virgo, you decide to sort these boxes by moving some of them. In each move you can choose a slot and move the top box in this slot to an adjacent slot (of course you can only put it on the top). You should ensure that the limitation mentioned above is still satisfied after this move. After the sort operation, there should be exactly one box in each slot, and for each pair of adjacent slots, the box in the left one should be smaller than the box in the right one.
Your task is to calculate the minimum number of moves you need to sort the boxes.
PKU里有个奇怪的仓库。仓库里有n个连成一线的盒子槽。每个槽上可以叠堆人员数量的盒子。为了保持平衡,唯一的限制是:只能把小盒子放在大盒子上面。槽的编号为从1到n。最左边的槽为1。 开始时,每个槽都有一个盒子。槽i中盒子的体积为vi。作为处女座,你决定通过移动盒子来对其进行排序。每次移动时你都能选择一个槽,把顶部的盒子移动到相邻的槽(当然你还是只能放在顶部)。你需要确保移动后依然满足上述的限制。排序过后,每个槽都应有一个盒子,并且对于任意一对相邻的槽,左边的盒子要小于右边的盒子。 你的任务就是计算完成盒子排序的最少移动次数。
CN
Input - 输入
In the first line there’s an integer T(T≤6000), indicating the number of test cases. The following 2T lines describe the test cases.
In each test case, the first line contains an integer n, indicating the number of slots. The second line contains n integers v1,v2…vn, indicating the volume of the boxes. It is guaranteed that all vi in a test case are different.
Please note that n<8,0≤vi≤104
第一行有一个整数T,表示测试用例的数量。随后有2T行的测试用例。 对于每组测试用例,第一行有一个整数n,表示槽的数量。第二行有n个整数 v1,v2 … vn,表示盒子的体积。保证一组用例中所有的vi都是不同的。 请注意n<,≤vi≤^
CN
Output - 输出
For each test case, print a line containing one integer indicating the answer. If it’s impossible to sort the boxes, print -1.
对于每组测试用例,输出一行整数答案。如果无法完成盒子排序,输出-。
CN
Sample Input - 样例输入
4
3
2 1 3
2
7 8
2
10000 1000
3
97 96 95
Sample Output - 样例输出
4
0
-1
20
题解
开始时脑袋一抽冒了个2^(8*8)的状态表示,看到2^21后恍然大悟。 写完时没注意T,弄了个在线查询超时了……默默地改成打表
压缩状态:
[1--] [2--] [3--] [4--] [5--] [6--] [7--]
最多7个数,把数字离散化成位置。
用3位二进制标记第i小的数存放的位置,[0, 6]或[1, 7]的方式都差不多。 状态数2^(3*7)。
(但是想了想为什么不把3位全用上,估计是因为2^(3*8)……)
后面就是BFS打表,枚举所有情况。
后记:
打表刚刚写完的时候在本地的VS跑了2.5s的初始化,结果hihoCoder上居然A了?!哈?还只花了0.1s
吓得我以为hihoCoder用的是80GHz的CPU……
后面经过对比估计是VS和G++ STL的区别,VS不知道为什么这次queue特别低效。
经过稍微优化后也只能达到1.3s的初始化速度,G++基本为0.2s内初始化完成。
估计还是queue的锅,不知这速度差距是不是算得上BUG了。
代码 C++
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
int n, ed, bit[] = { }, map[];
unsigned int opt[ << | ], data[];
std::queue<int> q; int red(){
int now, tmp[], i;
scanf("%d", &n);
for (i = ; i < n; ++i) scanf("%d", data + i);
memcpy(tmp, data, sizeof data);
std::sort(tmp, tmp + n);
for (i = ; i < n; ++i) map[tmp[i]] = i;
for (i = now = ; i < n; ++i) now ^= bit[map[data[i]]] * (i + );
return now;
} void setData(int d){
int i, j;
memset(data, -, sizeof data);
for (i = ; i <= n; ++i, d >>= ){
if (~data[j = (d & ) - ]) continue;
data[j] = i;
}
}
void BFS(){
int now, nxt, i;
while (!q.empty()){
setData(now = q.front()); q.pop();
for (i = ; i < n; ++i){
if (data[i] == -) continue;
if (i < n - ){
if (data[i] < data[i + ]){
nxt = now + bit[data[i] - ];
if (opt[now] + < opt[nxt]) opt[nxt] = opt[now] + , q.push(nxt);
}
}
if (i > ){
if (data[i] < data[i - ]){
nxt = now - bit[data[i] - ];
if (opt[now] + < opt[nxt]) opt[nxt] = opt[now] + , q.push(nxt);
}
}
}
}
}
void rdy(){
memset(opt, -, sizeof opt);
int now, i;
for (i = ; i < ; ++i) bit[i] = bit[i - ] << ;
for (i = now = ; i < ; n = ++i, BFS()){
q.push(now += bit[i] * (i + )); opt[now] = ;
}
} int main(){
rdy();
int t;
for (scanf("%d", &t); t--; printf("%d\n", opt[red()]));
return ;
}
hihoCoder 1233 : Boxes(盒子)的更多相关文章
- ACM学习历程—Hihocoder 1233 Boxes(bfs)(2015北京网赛)
hihoCoder挑战赛12 时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 There is a strange storehouse in PKU. In this ...
- hihocoder 1233 Boxes
题意:类汉诺塔的一个东西……移动规则与汉诺塔一样,但初始状态为题目中给出的每根棍上一个盘子,目标状态为盘子在棍上按大小顺序排列,盘子只能在相邻的棍儿上移动. 解法:广搜并打表记录从目标状态到所有可能的 ...
- Linux有趣命令
通外网 下载使用阿里云镜像源:wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.re ...
- HDU 5810 Balls and Boxes(盒子与球)
Balls and Boxes(盒子与球) Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/O ...
- [Swift]LeetCode546. 移除盒子 | Remove Boxes
Given several boxes with different colors represented by different positive numbers. You may experie ...
- 546 Remove Boxes 移除盒子
给定一些不同颜色的盒子,以不同的正整数表示.消去连续相同颜色的盒子,直到全部消除完毕为止.每一次消去可以得到k * k分(k为消去盒子的个数, k >= 1).计算可以得到的最大得分.注意:盒 ...
- Boxes in a Line(移动盒子)
You have n boxes in a line on the table numbered 1 . . . n from left to right. Your task is to sim ...
- [LeetCode] Remove Boxes 移除盒子
Given several boxes with different colors represented by different positive numbers. You may experie ...
- 2015北京网络赛 G题 Boxes bfs
Boxes Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://hihocoder.com/contest/acmicpc2015beijingonl ...
随机推荐
- 设计模式之Chain of Responsibility(职责链)(转)
Chain of Responsibility定义 Chain of Responsibility(CoR) 是用一系列类(classes)试图处理一个请求request,这些类之间是一个松散的耦合, ...
- Linux基础命令---tail显示文本
tail 显示文本文件尾部的部分内容,默认显示最后10行. 此命令的适用范围:RedHat.RHEL.Ubuntu.CentOS.SUSE.openSUSE.Fedora. 1.语法 ...
- PIVOT(透视转换)和UNPIVOT(逆透视转换)
一.原数据状态 二.手动写透视转换1 三.手动写透视转换2 四.PIVOT(透视转换)和UNPIVOT(逆透视转换)详细使用 使用标准SQL进行透视转换和逆视转换 --行列转换 create tabl ...
- Numpy 通用函数
frompyfunc的调用格式为frompyfunc(func, nin, nout),其中func是计算单个元素的函数,nin是此函数的输入参数的个数,nout是此函数的返回值的个数 # 注:用fr ...
- C++11 正则表达式简单运用
正则表达式(regular expression)是计算机科学中的一个概念,又称规则表达式,通常简写为regex.regexp.RE.regexps.regexes.regexen. 正则表达式是一种 ...
- ubuntu 常见命令整理
SSH 查看ssh服务的进程是否已经开启ps -e | grep ssh 安装ssh服务组件sudo apt-get install openssh-server 服务启动和关闭 方法1:servic ...
- elasticsearch配置文件详解
来自:http://www.searchtech.pro/articles/2013/02/18/1361194291548.html elasticsearch的config文件夹里面有两个配置文 ...
- 牛客网校招全国统一模拟笔试(二月场)- Java方向
1.请问下面关于与wait()一起使用的方法notify()的各种陈述,哪个正确? A 多个线程同时等待某个条件,则只有等待时间最长的哪个线程被通知 B 多个线程同时等待某条件,则没有办法预测哪个线程 ...
- 前端 --- 1 HTML
一.文档结构 <!DOCTYPE html> <html lang="zh-CN"> #这个lang表示语言,zh-CN是中文的意思, 如果以英文为主,就写 ...
- JUnit Parametrized Tests
Junit allows us to create parametrized tests. Parametrized test class has to be annotated with the @ ...