ACM
文章平均质量分 72
zk2802996
这个作者很懒,什么都没留下…
展开
-
为什么我的只能10个过八个 求解
题目描述: This time, you are supposed to find A+B where A and B are two matrices, and then count the number of zero rows and columns. 输入: The input consists of several test cases, eac原创 2012-06-09 20:23:39 · 434 阅读 · 0 评论 -
POJ:Flip Game
题目来源:http://poj.org/problem?id=1753 题目类型:枚举 + BFS + 位运算 主要思想:由于硬币只有两种状态,所以可以用16个二进制位来存储16个硬币(unsigned short stat;) 异或运算:XOR 0^1=1 1^1=0; 用XOR来快速的flip硬币 定义flip[16原创 2013-04-10 23:17:35 · 771 阅读 · 0 评论 -
关于POJ
虽然我在准备考研,数学要花大量时间去看,但我会用时间来完成POJ上的题目的,并且每题都写解题报告。 希望自己明年能蟾宫折桂原创 2013-04-13 21:40:11 · 579 阅读 · 0 评论 -
POJ 2965:The Pilots Brothers' refrigerator
这个题目的解法与poj:1753差不多,只是我添加了一个链表来记录每次操作的步骤 我就直接贴代码了 #include #include #include using namespace std; #define SIZE 4 #define MAX 65536 int flip[]={63624,62532,61986,61713,36744,20292,12066,7953,35原创 2013-04-13 21:33:38 · 661 阅读 · 0 评论 -
题目1436:Repair the Wall
题目描述: Long time ago , Kitty lived in a small village. The air was fresh and the scenery was very beautiful. The only thing that troubled her is the typhoon. When the typhoon came, everything is原创 2014-03-23 20:57:18 · 588 阅读 · 0 评论 -
Hanoi问题
问题描述: 古代有一个梵塔,塔内有三个座A、B、C,A座上有64个盘子,盘子大小不等,大的在下,小的在上(如图)。有一个和尚想把这64个盘子从A座移到B座,但每次只能允许移动一个盘子,并且在移动过程中,3个座上的盘子始终保持大盘在下,小盘在上。在移动过程中可以利用B座,要求打印移动的步骤。 代码: #include void Move(char chSour,char c原创 2012-06-06 16:30:01 · 491 阅读 · 0 评论