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 ...
随机推荐
- Windows 7关闭睡眠(休眠)模式和删除休眠文件
原文地址:https://www.192ly.com/pc/win7/gb-sm.html 怎么关闭Windows 7关闭睡眠(休眠)功能?Windows 7系统中怎么删除休眠文件?Windows 7 ...
- vue之component
因为组件是可复用的 Vue 实例,所以它们与 new Vue 接收相同的选项,例如 data.computed.watch.methods 以及生命周期钩子等.仅有的例外是像 el 这样根实例特有的选 ...
- python docopt模块详解
python docopt模块详解 docopt 本质上是在 Python 中引入了一种针对命令行参数的形式语言,在代码的最开头使用 """ ""&q ...
- Linux 进程管理 ps、top、pstree命令
ps命令:查看系统中正在运行的进程 ps 是用来静态地查看系统中正在运行的进程的命令.不过这个命令有些特殊,它的部分选项不能加入"-",比如命令"ps aux" ...
- react将表格动态生成视频列表【代码】【案例】
只需要创建一个表格,id为videos,react就能将这个表格转换成视频列表,并点击自动播放 index.html <!DOCTYPE html> <html> <he ...
- innobackup stream 压缩备份,解压后的qp文件
是用innobackup stream 压缩备份,解压后很多文件还是qp格式的压缩文件,需要再解压. 备份: [root@ ~]# /usr/bin/innobackupex --defaults-f ...
- ELK学习笔记之简单适用的ES集群监控工具cerebro安装使用
安装指导及使用简介 1. 下载安装包: https://github.com/lmenezes/cerebro/releases/download/v0.7.3/cerebro-0.7.3. ...
- atomic 原子操作
原子操作:操作仅由一个独立的CPU指令代表和完成.保证并发环境下原子操作的绝对安全 标准库代码包:sync/atomic atomic是最轻量级的锁,在一些场景下直接使用atomic包还是很有效的 C ...
- oracle orion hugepages_settings.sh(支持OEL 7,4.1内核)
orion需要首先配置hugepage,否则会出现下列错误. [root@yyxxdb01 ~]# /opt/app/11.2.0/grid_home/bin/orion -run oltp -tes ...
- k8s渐进
基本命令介绍(推荐) 1. The Almighty Pause Container 2. What are Kubernetes Pods Anyway? 3.中文版官方翻译[版本2] 提供了很多 ...