摘要: 题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=109&page=show_problem&problem=323题目描述:给定几个图形,问能否拼成一个4*4的矩形分析:这个题虽然放在难回溯里,但因为没有旋转翻转之类的操作,所以不是很难。一行一行的放就行了。 1 #include <cstdio> 2 #include <cstring> 3 4 const int MAXN = 10; 5 6 struct piece 阅读全文
posted @ 2012-11-06 21:25 冰鸮 阅读(186) 评论(0) 推荐(0)