Let's play a card game called Gap.
You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of the card, and the second digit (from 1 to 7) represents the value of the card.
First, you shu2e the cards and lay them face up on the table in four rows of seven cards, leaving a space of one card at the extreme left of each row. The following shows an example of initial layout.
Next, you remove all cards of value 1, and put them in the open space at the left end of the rows: "11" to the top row, "21" to the next, and so on.
Now you have 28 cards and four spaces, called gaps, in four rows and eight columns. You start moving cards from this layout.
At each move, you choose one of the four gaps and fill it with the successor of the left neighbor of the gap. The successor of a card is the next card in the same suit, when it exists. For instance the successor of "42" is "43", and "27" has no successor.
In the above layout, you can move "43" to the gap at the right of "42", or "36" to the gap at the right of "35". If you move "43", a new gap is generated to the right of "16". You cannot move any card to the right of a card of value 7, nor to the right of a gap.
The goal of the game is, by choosing clever moves, to make four ascending sequences of the same suit, as follows.
Your task is to find the minimum number of moves to reach the goal layout.
You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of the card, and the second digit (from 1 to 7) represents the value of the card.
First, you shu2e the cards and lay them face up on the table in four rows of seven cards, leaving a space of one card at the extreme left of each row. The following shows an example of initial layout.
Next, you remove all cards of value 1, and put them in the open space at the left end of the rows: "11" to the top row, "21" to the next, and so on.
Now you have 28 cards and four spaces, called gaps, in four rows and eight columns. You start moving cards from this layout.
At each move, you choose one of the four gaps and fill it with the successor of the left neighbor of the gap. The successor of a card is the next card in the same suit, when it exists. For instance the successor of "42" is "43", and "27" has no successor.
In the above layout, you can move "43" to the gap at the right of "42", or "36" to the gap at the right of "35". If you move "43", a new gap is generated to the right of "16". You cannot move any card to the right of a card of value 7, nor to the right of a gap.
The goal of the game is, by choosing clever moves, to make four ascending sequences of the same suit, as follows.
Your task is to find the minimum number of moves to reach the goal layout.
Each layout consists of five lines - a blank line and four lines which represent initial layouts of four rows. Each row has seven two-digit numbers which correspond to the cards.
4 12 13 14 15 16 17 21 22 23 24 25 26 27 31 32 33 34 35 36 37 41 42 43 44 45 46 47 11 26 31 13 44 21 24 42 17 45 23 25 41 36 11 46 34 14 12 37 32 47 16 43 27 35 22 33 15 17 12 16 13 15 14 11 27 22 26 23 25 24 21 37 32 36 33 35 34 31 47 42 46 43 45 44 41 27 14 22 35 32 46 33 13 17 36 24 44 21 15 43 16 45 47 23 11 26 25 37 41 34 42 12 31
0 33 60 -1
第一次写这种搜索,真是涨见识了,一开始死活想不出来,才知道这道题已经超出了我预知的范畴,用到了hash判重,又是一个全新的概念,我要好好地学一学了,下次开一个hash专题。
参考代码注明出处:http://blog.youkuaiyun.com/nucshiyilang/article/details/53010387
具体代码如下:
#include <map> #include <queue> #include <iostream> #include <stdio.h> #include <string.h> using namespace std; char Hash[40]; const char Map[36] = { 11, 12, 13, 14, 15, 16, 17, 1, 21, 22, 23, 24, 25, 26, 27, 1, 31, 32, 33, 34, 35, 36, 37, 1, 41, 42, 43, 44, 45, 46, 47, 1 }; struct node{ int step; char str[36]; }pre, nex; int bfs() { queue<node> q; map<string, int> mat; strcpy(pre.str, Hash); pre.step = 0; if(strcmp(Map, Hash) == 0) return 0; mat[pre.str] = 1; q.push(pre); while(!q.empty()) { nex = q.front(); q.pop(); for(int i = 1; i < 32; i++) { if(nex.str[i] == 1 && nex.str[i-1] != 1 && nex.str[i-1]%10 != 7) { pre = nex; for(int j = 0; j < 32; j++) { if(pre.str[j] == pre.str[i-1] + 1) { pre.str[i] = pre.str[j]; pre.str[j] = 1; break; } } pre.step++; if(strcmp(pre.str, Map) == 0) return pre.step; if(mat[pre.str] == 0) { mat[pre.str] = 1; q.push(pre); } } } } return -1; } int main() { int N; scanf("%d",&N); while(N--) { int k = 0; for(int i = 1; i <= 4; i++) { Hash[k++] = i*10+1; for(int j = 1; j <= 7; j++) { int temp; scanf("%d",&temp); Hash[k] = temp; if(temp%10 == 1) { Hash[k] = 1; } k++; } } // for(int i = 0; i < k; i++) { // printf("%d ",hash[i]); // } printf("%d\n",bfs()); } return 0; }