zoukankan      html  css  js  c++  java
  • hdu.1067.Gap(bfs+hash)

    Gap

    Time Limit: 20000/10000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 690    Accepted Submission(s): 380

    Problem Description
    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.
     
    Input
    The input starts with a line containing the number of initial layouts that follow.
    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.
     
    Output
    For each initial layout, produce a line with the minimum number of moves to reach the goal layout. Note that this number should not include the initial four moves of the cards of value 1. If there is no move sequence from the initial layout to the goal layout, produce "-1".
     
    Sample Input
    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
     
    Sample Output
    0 33 60 -1
     
      1 #include<stdio.h>
      2 #include<queue>
      3 #include<string.h>
      4 typedef long long ll ;
      5 int T ;
      6 struct Map
      7 {
      8     int step ;
      9     int map[4][8] ;
     10 }ans , tmp ;
     11 const int bas = 3 ;
     12 const int mod = 1000000 + 3 ;
     13 struct edge
     14 {
     15     ll w ;
     16     int nxt ;
     17 }e[mod];
     18 int H[mod] , E ;
     19 void insert (ll x)
     20 {
     21     int y = x % mod ;
     22     if (y < 0) y += mod ;
     23     e[++ E].w = y ;
     24     e[E].nxt = H[y] ;
     25     H[y] = E ;
     26 }
     27 
     28 bool find (ll x)
     29 {
     30     int y = x % mod ;
     31     if (y < 0) y += mod ;
     32     for (int i = H[y] ; i ; i = e[i].nxt) {
     33         if (e[i].w == x) return true ;
     34     }
     35     return false ;
     36 }
     37 void bfs (Map ans)
     38 {
     39     std::queue<Map> q ;
     40     while (!q.empty ()) q.pop () ;
     41     memset (H , 0 , sizeof(H)) ; E = 0 ;
     42     ans.step = 0 ;
     43     q.push (ans) ;
     44     while (!q.empty ()) {
     45         ans = q.front () ; q.pop () ;
     46         bool flag = 1 ;
     47         for (int i = 0 ; i < 4 && flag ; i ++) for (int j = 0 ; j < 7 && flag ; j ++) if (ans.map[i][j] != (i + 1) * 10 + j + 1) flag = 0 ;
     48         if (flag ) {
     49             printf ("%d
    " , ans.step) ;
     50             return ;
     51         }
     52         for (int i = 0 ; i < 4 ; i ++) {
     53             for (int j = 1 ;  j < 8 ; j ++) {
     54                 tmp = ans ;
     55                 if (ans.map[i][j] == 0 ) {
     56                     int num = ans.map[i][j - 1] + 1 ;
     57                   //  printf ("num=%d
    " , num ) ;
     58                    // printf ("(%d,%d)
    " , i , j ) ;
     59                     if ((num % 10 > 7 )|| (num % 10 == 1)) continue ;
     60                     for (int s = 0 ; s < 4 ; s ++) {
     61                             for (int t = 1 ; t < 8 ; t ++) {
     62                                 if (ans.map[s][t] == num) {
     63                                     tmp.map[i][j] = num ;
     64                                     tmp.map[s][t] = 0 ;
     65                                 }
     66                             }
     67                     }
     68                     ll rhs = 1 ;
     69                     for (int e = 0 ; e < 4 ; e ++) {
     70                         for (int f = 1 ; f < 8 ; f ++) {
     71                             rhs = (rhs * bas + tmp.map[e][f]) % mod ;
     72                         }
     73                     }
     74                    // printf ("rhs=%lld
    " , rhs) ;
     75                     if ( !find (rhs)) insert (rhs) ;
     76                     else continue ;
     77                     tmp.step ++ ;
     78                     q.push (tmp) ;
     79                 }
     80             }
     81         }
     82     }
     83     puts ("-1") ;
     84 }
     85 
     86 int main ()
     87 {
     88     //freopen ("a.txt" , "r" , stdin ) ;
     89     scanf ("%d" , &T) ;
     90     while (T --) {
     91         for (int i = 0 ; i < 4 ; i ++) for (int j = 1 ; j < 8 ; j ++) scanf ("%d" , &ans.map[i][j]) ;
     92         for (int i = 0 ; i < 4 ; i ++) for (int j = 1 ; j < 8 ; j ++) if (ans.map[i][j] % 10 == 1) ans.map[i][j] = 0 ;
     93         ans.map[0][0] = 11 ; ans.map[1][0] = 21 ; ans.map[2][0] = 31 ; ans.map[3][0] = 41 ;
     94       /*  for (int i = 0 ; i < 4 ; i ++) {
     95             for (int j = 0 ; j < 8 ; j ++) {
     96                 printf ("%2d " , ans.map[i][j]) ;
     97             }
     98             puts ("") ;
     99         }*/
    100         bfs (ans) ;
    101     }
    102     return 0 ;
    103 }
    View Code

    hash有些没准心,我用那种叫bkdhash,虽说使用上成功率颇高,但我这边交了三发才过。
    还有一开始错误认为每个出队的都会产生15种状态,事实上只用4种。

  • 相关阅读:
    名师破解英语四级汉译英
    名师破解英语四级汉译英
    名师破解英语四级汉译英
    输出矩阵右上角元素
    输入行列式中偶数行和偶数列的数据
    转秩矩阵
    数据排序
    从键盘上输入5个数,输出最大、最小元素的值以及它们的下标
    中文处理(全角/半角)
    获取汉字拼音首字母
  • 原文地址:https://www.cnblogs.com/get-an-AC-everyday/p/4451404.html
Copyright © 2011-2022 走看看