无信息搜索之迭代加深(iterative deepening)

2023-10-23 21:30

本文主要是介绍无信息搜索之迭代加深(iterative deepening),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

The Rotation Game

描述
The rotation game uses a # shaped board, which can hold 24 pieces of square blocks (see Fig.1). The blocks are marked with symbols 1, 2 and 3, with exactly 8 pieces of each kind.
在这里插入图片描述

Initially, the blocks are placed on the board randomly. Your task is to move the blocks so that the eight blocks placed in the center square have the same symbol marked. There is only one type of valid move, which is to rotate one of the four lines, each consisting of seven blocks. That is, six blocks in the line are moved towards the head by one block and the head block is moved to the end of the line. The eight possible moves are marked with capital letters A to H. Figure 1 illustrates two consecutive moves, move A and move C from some initial configuration.

输入
The input consists of no more than 30 test cases. Each test case has only one line that contains 24 numbers, which are the symbols of the blocks in the initial configuration. The rows of blocks are listed from top to bottom. For each row the blocks are listed from left to right. The numbers are separated by spaces. For example, the first test case in the sample input corresponds to the initial configuration in Fig.1. There are no blank lines between cases. There is a line containing a single ‘0’ after the last test case that ends the input.

输出
For each test case, you must output two lines. The first line contains all the moves needed to reach the final configuration. Each move is a letter, ranging from ‘A’ to ‘H’, and there should not be any spaces between the letters in the line. If no moves are needed, output `No moves needed’ instead. In the second line, you must output the symbol of the blocks in the center square after these moves. If there are several possible solutions, you must output the one that uses the least number of moves. If there is still more than one possible solution, you must output the solution that is smallest in dictionary order for the letters of the moves. There is no need to output blank lines between cases.

样例输入

1 1 1 1 3 2 3 2 3 1 3 2 2 3 1 2 2 2 3 1 2 1 3 3
1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
3 1 1 2 1 1 1 3 2 2 1 1 2 2 2 2 3 3 3 3 2 3 3 1
1 3 3 3 1 1 2 2 1 1 1 2 2 3 3 3 2 2 2 1 1 3 2 3
1 3 1 3 2 2 3 3 1 1 3 2 1 3 3 2 1 2 1 3 1 2 2 2
2 3 1 3 3 2 1 3 3 1 1 2 1 3 2 3 2 1 2 1 3 2 1 2
1 2 2 3 2 1 3 3 1 1 3 1 3 3 2 3 2 1 1 1 2 2 3 2
1 2 2 2 1 3 3 3 1 3 2 1 1 1 3 2 3 2 3 1 2 1 3 2
2 2 3 2 1 3 1 3 1 3 2 3 1 1 3 2 2 2 3 1 3 1 1 2
3 2 1 2 1 3 1 3 3 3 2 2 1 1 3 3 2 2 3 1 1 1 2 2
1 2 2 2 1 3 3 3 3 3 2 1 1 3 1 2 3 3 2 2 1 1 1 2
1 3 1 1 2 3 2 2 2 1 3 3 2 2 3 1 1 3 1 2 2 3 1 3
1 3 1 1 2 1 3 2 2 1 3 2 2 2 3 3 1 3 1 2 1 3 2 3
1 2 2 2 3 2 1 1 3 2 1 1 3 2 3 3 1 3 1 2 2 3 3 1
3 2 1 2 2 1 2 2 1 1 3 3 3 2 3 1 1 3 1 2 3 3 2 1
3 2 2 1 3 2 3 1 2 3 1 1 1 2 2 2 1 3 3 1 3 1 3 2
3 1 2 2 3 2 3 1 2 3 1 1 1 1 2 2 2 2 3 3 3 1 3 1
3 2 3 1 3 2 3 1 2 3 1 2 1 2 2 1 2 3 3 1 2 1 3 1
3 1 3 2 1 2 1 1 3 2 3 2 3 1 2 2 1 2 1 3 2 3 3 1
3 3 3 1 1 2 3 1 1 2 3 1 2 1 2 2 2 3 3 3 1 1 2 2
0

样例输出

AC
2
DDHH
2
No moves needed
1
AHADDE
2
CACGAH
2
AAHEGACA
1
BDFFDHHFD
1
CBGFGBHHFD
1
ABGEECGAGAC
1
BBDFHBBHFG
2
AGAEHEEDHF
2
ABBCAACDE
1
ECGEGAACG
2
DBBFGHBHA
3
BDAEECGACB
3
BFHBDDFFHF
3
GEGHBFDBH
1
DDDBHBBFH
1
DADECCAEG
2
ADHAEECCG
2
DBDFCBFHHF
2
import java.util.Scanner;
import java.io.*;
//import java.util.Random;/***          A     B*          01    02*          03    04* H  05 06 07 08 09 10 11 C*          12    13* G  14 15 16 17 18 19 20 D*          21    22*          23    24*          F     E *  *  input cases:* 1 1 1 1 3 2 3 2 3 1 3 2 2 3 1 2 2 2 3 1 2 1 3 3* 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3* 0*/public class Main {static class State{public String boardStr;public String lastOp;public State parent;public int depth;public State(State parent, String o, String s){State.this.parent = parent;State.this.lastOp = o;State.this.boardStr = s;}@Overridepublic int hashCode(){return State.this.boardStr.hashCode();}public boolean check(){if(boardStr.charAt(6) == boardStr.charAt(7) &&boardStr.charAt(7) == boardStr.charAt(8) &&boardStr.charAt(8) == boardStr.charAt(11) &&boardStr.charAt(11) == boardStr.charAt(12) &&boardStr.charAt(12) == boardStr.charAt(15) &&boardStr.charAt(15) == boardStr.charAt(16) &&boardStr.charAt(16) == boardStr.charAt(17) )return true;return false;}public State move(String action){char[] board = boardStr.toCharArray();char temp;switch(action){case "A":temp = board[0];board[0] = board[2];board[2] = board[6];board[6] = board[11];board[11] = board[15];board[15] = board[20];board[20] = board[22];board[22] = temp;break;case "B":temp = board[1];board[1] = board[3];board[3] = board[8];board[8] = board[12];board[12] = board[17];board[17] = board[21];board[21] = board[23];board[23] = temp;break;case "C":temp = board[10];board[10] = board[9];board[9] = board[8];board[8] = board[7];board[7] = board[6];board[6] = board[5];board[5] = board[4];board[4] = temp;break;case "D":temp = board[19];board[19] = board[18];board[18] = board[17];board[17] = board[16];board[16] = board[15];board[15] = board[14];board[14] = board[13];board[13] = temp;break;case "E":temp = board[23];board[23] = board[21];board[21] = board[17];board[17] = board[12];board[12] = board[8];board[8] = board[3];board[3] = board[1];board[1] = temp;break;case "F":temp = board[22];board[22] = board[20];board[20] = board[15];board[15] = board[11];board[11] = board[6];board[6] = board[2];board[2] = board[0];board[0] = temp;break;case "G":temp = board[13];board[13] = board[14];board[14] = board[15];board[15] = board[16];board[16] = board[17];board[17] = board[18];board[18] = board[19];board[19] = temp;break;case "H":temp = board[4];board[4] = board[5];board[5] = board[6];board[6] = board[7];board[7] = board[8];board[8] = board[9];board[9] = board[10];board[10] = temp;break;	}State newState = new Main.State(State.this, action, new String(board));return newState;}public boolean solvable(int limit){char[] board = boardStr.toCharArray();char[] center = {board[6],board[7],board[8],board[11],board[12],board[15],board[16],board[17]};int[] count = new int[3];for(char c: center){count[c-'1'] += 1;}int maxCount = Math.max(Math.max(count[0], count[1]),count[2]);if(8 - maxCount > limit){return false;}return true;}}static Scanner input;static String boardString;static String[] actions = {"A","B","C","D","E","F","G","H"};static State targetState;static char targetNum;static public void showBoard(State s){char[] board = s.boardStr.toCharArray();System.out.println("  "+board[0]+" "+board[1]);System.out.println("  "+board[2]+" "+board[3]);System.out.println(""+board[4]+board[5]+board[6]+board[7]+board[8]+board[9]+board[10]);System.out.println("  "+board[11]+" "+board[12]);System.out.println(""+board[13]+board[14]+board[15]+board[16]+board[17]+board[18]+board[19]);System.out.println("  "+board[20]+" "+board[21]);System.out.println("  "+board[22]+" "+board[23]);		}	static public void search(State origin){	for(int i=1; i<1000; ++i){if(DepthLimitedSearch(origin, i)){break;}}String path = "";while(targetState.parent != null){path = targetState.lastOp + path;targetState = targetState.parent;}System.out.println(path);System.out.println(targetNum);}static public boolean DepthLimitedSearch(State curr, int limit){if(limit < 0 || !curr.solvable(limit)){return false;}if(curr.check()){targetState = curr;			targetNum = curr.boardStr.charAt(7);return true;}else{if(limit > 0)for(String act:actions){if(DepthLimitedSearch(curr.move(act), limit-1)){return true;}}}return false;}//	static public void genTest(){
//		Random rand =new Random();
//		State o = new State(null,null,"111111112222222233333333");
//		State tmp = o;
//		for(int i=0; i<20; ++i){
//			for(int j=0; j<7; ++j){
//				tmp = tmp.move(actions[rand.nextInt(8)]);
//			}
//			System.out.println(tmp.boardStr);
//		}
//	}public static void main(String[] args) throws FileNotFoundException{input= new Scanner(new BufferedReader(new FileReader("E:\\workspace\\rotate\\bin\\data.txt")));//input= new Scanner(System.in);while(true){int[] board = new int[24];board[0] = input.nextInt();if (board[0] == 0)break;StringBuilder sb = new StringBuilder();sb.append(board[0]);for(int i=1; i<24;++i){board[i] = input.nextInt();sb.append(board[i]);}boardString = sb.toString();State originState = new Main.State(null, null, boardString);if(originState.check()){System.out.println("No moves needed");System.out.println(board[7]);}else{search(originState);}}}
}

这篇关于无信息搜索之迭代加深(iterative deepening)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/270549

相关文章

一文详解SQL Server如何跟踪自动统计信息更新

《一文详解SQLServer如何跟踪自动统计信息更新》SQLServer数据库中,我们都清楚统计信息对于优化器来说非常重要,所以本文就来和大家简单聊一聊SQLServer如何跟踪自动统计信息更新吧... SQL Server数据库中,我们都清楚统计信息对于优化器来说非常重要。一般情况下,我们会开启"自动更新

Python如何获取域名的SSL证书信息和到期时间

《Python如何获取域名的SSL证书信息和到期时间》在当今互联网时代,SSL证书的重要性不言而喻,它不仅为用户提供了安全的连接,还能提高网站的搜索引擎排名,那我们怎么才能通过Python获取域名的S... 目录了解SSL证书的基本概念使用python库来抓取SSL证书信息安装必要的库编写获取SSL证书信息

Mybatis从3.4.0版本到3.5.7版本的迭代方法实现

《Mybatis从3.4.0版本到3.5.7版本的迭代方法实现》本文主要介绍了Mybatis从3.4.0版本到3.5.7版本的迭代方法实现,包括主要的功能增强、不兼容的更改和修复的错误,具有一定的参考... 目录一、3.4.01、主要的功能增强2、selectCursor example3、不兼容的更改二、

Win32下C++实现快速获取硬盘分区信息

《Win32下C++实现快速获取硬盘分区信息》这篇文章主要为大家详细介绍了Win32下C++如何实现快速获取硬盘分区信息,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 实现代码CDiskDriveUtils.h#pragma once #include <wtypesbase

Python使用DeepSeek进行联网搜索功能详解

《Python使用DeepSeek进行联网搜索功能详解》Python作为一种非常流行的编程语言,结合DeepSeek这一高性能的深度学习工具包,可以方便地处理各种深度学习任务,本文将介绍一下如何使用P... 目录一、环境准备与依赖安装二、DeepSeek简介三、联网搜索与数据集准备四、实践示例:图像分类1.

Python如何实现PDF隐私信息检测

《Python如何实现PDF隐私信息检测》随着越来越多的个人信息以电子形式存储和传输,确保这些信息的安全至关重要,本文将介绍如何使用Python检测PDF文件中的隐私信息,需要的可以参考下... 目录项目背景技术栈代码解析功能说明运行结php果在当今,数据隐私保护变得尤为重要。随着越来越多的个人信息以电子形

C#实现系统信息监控与获取功能

《C#实现系统信息监控与获取功能》在C#开发的众多应用场景中,获取系统信息以及监控用户操作有着广泛的用途,比如在系统性能优化工具中,需要实时读取CPU、GPU资源信息,本文将详细介绍如何使用C#来实现... 目录前言一、C# 监控键盘1. 原理与实现思路2. 代码实现二、读取 CPU、GPU 资源信息1.

在C#中获取端口号与系统信息的高效实践

《在C#中获取端口号与系统信息的高效实践》在现代软件开发中,尤其是系统管理、运维、监控和性能优化等场景中,了解计算机硬件和网络的状态至关重要,C#作为一种广泛应用的编程语言,提供了丰富的API来帮助开... 目录引言1. 获取端口号信息1.1 获取活动的 TCP 和 UDP 连接说明:应用场景:2. 获取硬

SpringBoot使用Apache Tika检测敏感信息

《SpringBoot使用ApacheTika检测敏感信息》ApacheTika是一个功能强大的内容分析工具,它能够从多种文件格式中提取文本、元数据以及其他结构化信息,下面我们来看看如何使用Ap... 目录Tika 主要特性1. 多格式支持2. 自动文件类型检测3. 文本和元数据提取4. 支持 OCR(光学

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭