对应POJ题目:点击打开链接 Solitaire Time Limit: 5000MS Memory Limit: 65536KTotal Submissions: 3777 Accepted: 1345Case Time Limit: 1000MS Description Solitaire is a game played on a chessboard 8x8
Plus One Total Accepted: 4206 Total Submissions: 14127 My Submissions Given a number represented as an array of digits, plus one to the number. 题目意思为给定一个数组,这个数组内的数代表某个大数,也就是可能为100位甚至多少位的一个数。 例如123456
首先根据题意上的图形,对map的各个方向赋值,油管道的方向赋值为一; 最后根据地形数组p详细记录了各个点各个方向上的信息; 最后先对行进行比较,将满足题意的进行合并,然后最一列一列的将满足题意的合并; #include"stdio.h" #include"string.h" int pre[10000],p[600][600][4]; int map[11][4]={1,1,-1,-1