摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3682题目大意:给一个三维立方体,每次消除一行平行与坐标轴的小立方体(边长1),求一共消除了多少块。分析:说不上分析了,给每一块小立方体一个标号,方法随便,哈希就可以了,不过不知道为什么我的哈希一直TLE,不知道是写错了还是怎么回事,无奈快排一下写了。附代码:#include<cstdio>#include<cstdlib>#include<cstring>#include<iostream>#include<algorithm>using 阅读全文
摘要:
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3687题目大意:怎么说捏,就是把乱七八糟的队形用最短步数将他们排成矩形,人只能左右动。做法:枚举起点。好像就这些...代码:View Code #include<cstdio>#include<cstdlib>#include<cstring>#include<iostream>#include<algorithm>using namespace std;#define INF 200000int n,m;int map[60][210]; 阅读全文