c_cpp 15puzzle-idastar.cpp

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 15puzzle-idastar.cpp相关的知识,希望对你有一定的参考价值。

/* 
 * http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ALDS1_13_C
 * IDA*
 */
#include <iostream>
#include <stack>
#include <cstdlib>
#include <vector>
#define N 4
#define N2 16
#define MAX_DEPTH 45 
using namespace std;

class game{
  public:
  int board[N2];
  int w;
  int last_move;
  int depth;
  int mnh;
};
game start;
vector<int> move_list[N2];
int dist[N2][N2];

bool dfs(int depth){
  stack<game> s;
  s.push(start);
  
  game g;
  while(!s.empty()){
    g=s.top();s.pop();
    if(g.mnh==0) return true;
    if(g.depth==depth) continue;
    if(g.depth+g.mnh>depth) continue;

    for(int move:move_list[g.w]){
      if(g.last_move==-move) continue;
      game h=g;
      int to=h.w+move;
      h.mnh -= dist[to][h.board[to]-1];
      h.mnh += dist[h.w][h.board[to]-1];
      swap(h.board[h.w],h.board[to]);
      h.w = to;
      h.depth++;
      h.last_move=move;
      s.push(h);
    }
  }
  return false;
}

int solve(){
  for(int i=start.mnh;i<=MAX_DEPTH;i++){
    if(dfs(i)){
      return i;
    }
  }
  return -1;
}

void initialize(){
  for(int i=0;i<N2;i++){
    if(i%N<N-1) move_list[i].push_back(1);
    if(i%N>0  ) move_list[i].push_back(-1);
    if(i/N<N-1) move_list[i].push_back(N);
    if(i/N>0  ) move_list[i].push_back(-N);
  }

  //i=board,j=piece-1
  for(int i=0;i<N2;i++){
    for(int j=0;j<N2;j++){
      dist[i][j] = abs(j%N-i%N) + abs(j/N-i/N);
    }
  }

  start.mnh=0;
  for(int i=0;i<N2;i++){
    if(i==start.w) continue;
    start.mnh += dist[i][start.board[i]-1];
  }

  start.depth=0;
  start.last_move=0;
}

int main(){
  for(int i=0;i<N2;i++){
    int tmp; cin>>tmp;
    if(tmp==0){
      start.board[i]=N2;
      start.w=i;
    }else{
      start.board[i]=tmp;
    }
  }

  initialize();
  cout<<solve()<<endl;
}

以上是关于c_cpp 15puzzle-idastar.cpp的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp STC15 ADC查询模式

c_cpp 【15】利用imwrite生成透明PNG图像

c_cpp 724.找到枢轴指数 - 难度易 - 2018.8.15

c_cpp 15. 3Sum- Med - 2018.11.1

c_cpp 15puzzle-astar.cpp

c_cpp 15puzzle-idastar.cpp