oj acm 1026 广度搜索

2024-02-12 03:38
文章标签 搜索 acm 广度 1026 oj

本文主要是介绍oj acm 1026 广度搜索,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最短距离求解

求解最短距离,使用广度优先搜索和优先队列结合

使用visted数组记录是该层某节点否访问过。由于是保存在优先队列中,只要该层前面的路径有访问该节点,则一定是到达该节点的最短距离。

使用flag数组记录从某节点到达x,y的方向,从而输出时能还原路径。

代码

import java.io.File;
import java.io.FileNotFoundException;
import java.util.PriorityQueue;
import java.util.Scanner;//广度优先
class Pos implements Comparable {private int x;private int y;private int step;public int getX() {return x;}public void setX(int x) {this.x = x;}public int getY() {return y;}public void setY(int y) {this.y = y;}public int getStep() {return step;}public void setStep(int step) {this.step = step;}@Overridepublic String toString() {return "Pos{" +"x=" + x +", y=" + y +", step=" + step +'}';}public Pos(int x, int y, int step) {this.x = x;this.y = y;this.step = step;}public Pos() {}@Overridepublic int compareTo(Object o) {//从小到大if (o instanceof Pos) {Pos p = (Pos) o;return this.step - p.step;}return 0;}
}public class Main_1026 {private static int[][] dir = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};private static int n, m;private static int count;private static PriorityQueue<Pos> result;private static int[][] flag;private static boolean[][] visited;private static char[][] c;public static void main(String[] args) throws FileNotFoundException {Scanner in = new Scanner(new File("src/input.txt"));while (in.hasNext()) {n = in.nextInt();m = in.nextInt();count = 0;result = new PriorityQueue<>();flag = new int[n][m];visited = new boolean[n][m];c = new char[n][m];for (int i = 0; i < n; i++) {String s = in.next();for (int j = 0; j < m; j++) {c[i][j] = s.charAt(j);}}int step = c[0][0]=='.'? 0 : c[0][0] -'0';result.add(new Pos(0, 0, step));visited[0][0]= true;int count = bfs();if(count != -1) {System.out.println("It takes "+count+" seconds to reach the target position, let me show you the way.");print(n-1,m-1);}else{System.out.println("God please help our poor hero.");}System.out.println("FINISH");}}public static int bfs() {while (!result.isEmpty()) {Pos pre = result.poll();if (pre.getX() == n - 1 && pre.getY() == m - 1) {return pre.getStep();}for (int i = 0; i < 4; i++) {int x = pre.getX() + dir[i][0];int y = pre.getY() + dir[i][1];if (isValid(x, y)) {int step = c[x][y]=='.'? 1: c[x][y]-'0'+1;Pos next = new Pos(x, y, pre.getStep()+step);visited[x][y] = true;flag[x][y] = i + 1;result.add(next);}}}return -1;}public static void print(int x, int y) {if (flag[x][y] == 0) {if(c[x][y] !='.'){while(c[x][y]-'0'>=1){count++;c[x][y]--;System.out.printf("%ds:FIGHT AT (%d,%d)\n", count, x, y);}}return;}int pre_x = x - dir[flag[x][y] - 1][0];int pre_y = y - dir[flag[x][y] - 1][1];print(pre_x, pre_y);count++;System.out.printf("%ds:(%d,%d)->(%d,%d)\n", count, pre_x, pre_y, x, y);while (c[x][y] != '.' && c[x][y] - '0' >= 1) {count++;c[x][y]--;System.out.printf("%ds:FIGHT AT (%d,%d)\n", count, x, y);}}public static boolean isValid(int x, int y) {if (x < 0 || x >= n || y < 0 || y >= m) {return false;}if (c[x][y] == 'X') {return false;}if(visited[x][y]){return false;}return true;}
}

这篇关于oj acm 1026 广度搜索的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

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

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

C# ComboBox下拉框实现搜索方式

《C#ComboBox下拉框实现搜索方式》文章介绍了如何在加载窗口时实现一个功能,并在ComboBox下拉框中添加键盘事件以实现搜索功能,由于数据不方便公开,作者表示理解并希望得到大家的指教... 目录C# ComboBox下拉框实现搜索步骤一步骤二步骤三总结C# ComboBox下拉框实现搜索步骤一这

认识、理解、分类——acm之搜索

普通搜索方法有两种:1、广度优先搜索;2、深度优先搜索; 更多搜索方法: 3、双向广度优先搜索; 4、启发式搜索(包括A*算法等); 搜索通常会用到的知识点:状态压缩(位压缩,利用hash思想压缩)。

hdu1240、hdu1253(三维搜索题)

1、从后往前输入,(x,y,z); 2、从下往上输入,(y , z, x); 3、从左往右输入,(z,x,y); hdu1240代码如下: #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#inc

hdu 4517 floyd+记忆化搜索

题意: 有n(100)个景点,m(1000)条路,时间限制为t(300),起点s,终点e。 访问每个景点需要时间cost_i,每个景点的访问价值为value_i。 点与点之间行走需要花费的时间为g[ i ] [ j ] 。注意点间可能有多条边。 走到一个点时可以选择访问或者不访问,并且当前点的访问价值应该严格大于前一个访问的点。 现在求,从起点出发,到达终点,在时间限制内,能得到的最大

AI基础 L9 Local Search II 局部搜索

Local Beam search 对于当前的所有k个状态,生成它们的所有可能后继状态。 检查生成的后继状态中是否有任何状态是解决方案。 如果所有后继状态都不是解决方案,则从所有后继状态中选择k个最佳状态。 当达到预设的迭代次数或满足某个终止条件时,算法停止。 — Choose k successors randomly, biased towards good ones — Close

hdu4277搜索

给你n个有长度的线段,问如果用上所有的线段来拼1个三角形,最多能拼出多少种不同的? import java.io.BufferedInputStream;import java.io.BufferedReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;

ural 1026. Questions and Answers 查询

1026. Questions and Answers Time limit: 2.0 second Memory limit: 64 MB Background The database of the Pentagon contains a top-secret information. We don’t know what the information is — you

深度优先(DFS)和广度优先(BFS)——算法

深度优先 深度优先搜索算法(英语:Depth-First-Search,DFS)是一种用于遍历或搜索树或图的算法。 沿着树的深度遍历树的节点,尽可能深的搜索树的分支,当节点v的所在边都己被探寻过,搜索将回溯到发现节点v的那条边的起始节点。这一过程一直进行到已发现从源节点可达的所有节点为止。如果还存在未被发现的节点,则选择其中一个作为源节点并重复以上过程,整个进程反复进行直到所有节点都被访

浙大数据结构:04-树7 二叉搜索树的操作集

这道题答案都在PPT上,所以先学会再写的话并不难。 1、BinTree Insert( BinTree BST, ElementType X ) 递归实现,小就进左子树,大就进右子树。 为空就新建结点插入。 BinTree Insert( BinTree BST, ElementType X ){if(!BST){BST=(BinTree)malloc(sizeof(struct TNo