This page looks best with JavaScript enabled

「SCOI2005」骑士精神-搜索

 ·  ✏️ About  577 words  ·  ☕ 2 mins read · 👀... views

在一个 $5 \times 5$ 的棋盘上有 $12$ 个白色的骑士和 $12$ 个黑色的骑士, 且有一个空位。在任何时候一个骑士都能按照骑士的走法(它可以走到和它横坐标相差为 $1$ ,纵坐标相差为 $2$ 或者横坐标相差为 $2$ ,纵坐标相差为 $1$ 的格子)移动到空位上。 给定一个初始的棋盘,怎样才能经过移动变成如下目标棋盘: 为了体现出骑士精神,他们必须以最少的步数完成任务。

链接

Luogu P2324

题解

IDA*…

其实就是

  1. 设置一个深度限制防止搜索过深…
  2. 设置一个估价函数最优性剪枝…

看起来是吧…

好像 A* 就是用估价函数 + 优先队列优化?

代码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include <bits/stdc++.h>
using namespace std;

const int N = 8;

int n = 5;
int t[N][N];
char s[N][N];int a[N][N];
int mv[8][2] = {{1,-2},{1,2},{2,1},{2,-1},{-2,1},{-2,-1},{-1,-2},{-1,2}};

void init(){
  for(int i = 1;i<=n;i++) scanf("%s",s[i]+1);
  for(int i = 1;i<=n;i++){
    for(int j = 1;j<=n;j++){
      a[i][j] = s[i][j] == '*'? -1 : s[i][j] - '0';
    }
  }
}

int maxd = 0;

int dfs(int dep,int x,int y,int left,int last){
  if(dep + left > maxd + 1) return 0;
  // 考虑到我们最后一次一定是直接把剩余的格子减小 2,这么说感觉题解大部分是错的
  // hack数据:
  /* 
  1
  11111
  01111
  00*11
  00001
  00000
  答案:0
  有的题解会输出 “-1”
  */ 
  if(left == 0) return 1;
  for(int i = 0;i < 8;i++)if(i != 7 - last){
    int nx = x + mv[i][0],ny = y + mv[i][1];
    if(nx < 1 || nx > n || ny < 1 || ny > n) continue;
    int newleft = left;
    if(a[x][y]==t[x][y])     newleft++;
    if(a[nx][ny]==t[nx][ny]) newleft++;
    if(a[x][y]==t[nx][ny])   newleft--;
    if(a[nx][ny]==t[x][y])   newleft--;
    swap(a[x][y],a[nx][ny]);
    if(dfs(dep+1,nx,ny,newleft,i)) return 1;
    swap(a[x][y],a[nx][ny]);
  }
  return 0;
}

void solve(){
  int tx,ty,tleft = 0;
  for(int i = 1;i<=n;i++){
    for(int j = 1;j<=n;j++){
      if(a[i][j] != t[i][j]) tleft++;
      if(a[i][j] == -1) tx = i,ty = j;
    }
  }
  for(maxd = 0;maxd <= 15;maxd++){
    if(dfs(0,tx,ty,tleft,-1)) return (void)(printf("%d\n",maxd)); 
  }
  printf("-1\n");
}

int main(){
  t[1][1]=t[1][2]=t[1][3]=t[1][4]=t[1][5]=t[2][2]=1;
  t[2][3]=t[2][4]=t[2][5]=t[3][4]=t[3][5]=t[4][5]=1;
  t[2][1]=t[3][1]=t[3][2]=t[4][1]=t[4][2]=t[4][3]=0;
  t[4][4]=t[5][1]=t[5][2]=t[5][3]=t[5][4]=t[5][5]=0;
  t[3][3]=-1;
  int T;scanf("%d",&T);
  for(int i = 1;i<=T;i++){
    init(),solve();
  }
  return 0;
}

cqqqwq
WRITTEN BY
cqqqwq
A student in Software Engineering.


Comments