路口最短时间问题 - 华为OD统一考试

2024-01-28 15:04

本文主要是介绍路口最短时间问题 - 华为OD统一考试,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

OD统一考试(C卷)

分值: 200分

题解: Java / Python / C++

alt

题目描述

假定街道是棋盘型的,每格距离相等,车辆通过每格街道需要时间均为 timePerRoad;街道的街口(交叉点)有交通灯,灯的周期T(=lights[row][col])各不相同;

车辆可直行、左转和右转,其中直行和左转需要等相应T时间的交通灯才可通行,右转无需等待。

现给出 n*m 个街口的交通灯周期,以及起止街口的坐标,计算车辆经过两个街口的最短时间。

其中:

1)起点和终点的交通灯不计入时间,且可以任意方向经过街口
2)不可超出 n*m 个街口,不可跳跃,但边线也是道路(即 lights[0][0] -> lights[0][1] 是有效路径)

入口函数定义:

/**
* lights : n*m 个街口每个交通灯的周期,值范围[0,120],n和m的范围为[1,9]
* timePerRoad : 相邻两个街口之间街道的通过时间,范围为[0,600]
* rowStart : 起点的行号
* colStart : 起点的列号
* rowEnd : 终点的行号
* colEnd : 终点的列号
* return : lights[rowStart][colStart] 与 lights[rowEnd][colEnd] 两个街口之间的最短通行时间
*/
int calcTime(int[][] lights,int timePerRoad,int rowStart,int colStart,int rowEnd,int colEnd)

此题核心编程模式,实现对应方法即可。

示例1

输入:
[[1,2,3],[4,5,6],[7,8,9]],60,0,0,2,2输出:
245说明:
行走路线为(0,0)-> (0,1) -> (1,1) -> (1,2) ->(2,2)走了4格路,2个右转,1个左转,共耗时60+0+60+5+60+0+60=245

题解

数据量不大, 此题采用回溯法求解。

从四个方向到达起点,然后按照题目要求进行一步步的探索,直到所有的方案都探索完成,此时输出到达目标位置最短的时间。

Java

/*** @author code5bug*/
class Solution {private int[][] lights;private int timePerRoad;private int rowEnd, colEnd;private boolean[][][] vis;private int[][] directions = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}};  // 上、右、下、左private int result;/*** lights : n*m 个街口每个交通灯的周期,值范围[0,120],n和m的范围为[1,9]* timePerRoad : 相邻两个街口之间街道的通过时间,范围为[0,600]* rowStart : 起点的行号* colStart : 起点的列号* rowEnd : 终点的行号* colEnd : 终点的列号* return : lights[rowStart][colStart] 与 lights[rowEnd][colEnd] 两个街口之间的最短通行时间*/public int calcTime(int[][] lights, int timePerRoad, int rowStart, int colStart, int rowEnd, int colEnd) {int n = lights.length, m = lights[0].length;this.lights = lights;this.timePerRoad = timePerRoad;this.rowEnd = rowEnd;this.colEnd = colEnd;this.result = Integer.MAX_VALUE;this.vis = new boolean[n][m][4];for (int d = 0; d < 4; d++) { // 从四个方向到达起点, 寻找到达目标位置路口最短的时间dfs(rowStart, colStart, d, 0);}return result != Integer.MAX_VALUE ? result : -1;}private boolean valid(int row, int col) {return 0 <= row && row < vis.length && 0 <= col && col < vis[0].length;}private void dfs(int row, int col, int direction, int time) {if (vis[row][col][direction] || time >= result) { // 剪枝: 已经遍历过 或 时间不会更短return;}// 到达终点if (row == rowEnd && col == colEnd) {result = Math.min(result, time);return;}vis[row][col][direction] = true;for (int d = -1; d <= 1; d++) {int newDir = (direction + d + 4) % 4;int dr = directions[newDir][0], dc = directions[newDir][1];int newRow = row + dc, newCol = col + dr;if (!valid(newRow, newCol)) continue;if (d == -1 || d == 0) { // 左转或直行dfs(newRow, newCol, newDir, time + timePerRoad + lights[row][col]);} else {  // 右转,不需要路口等待时间dfs(newRow, newCol, newDir, time + timePerRoad);}}vis[row][col][direction] = false;}
}

Python

from math import infclass Solution:# 返回通过指定路口之间的最短时间# @param lights int整型二维数组 n*m 个街口每个交通灯的周期,值范围[0,120],n和m的范围为[1,9]# @param timePerRoad int整型 相邻两个街口之间街道的通过时间,范围为[0,600]# @param rowStart int整型 起点的行号# @param colStart int整型 起点的列号# @param rowEnd int整型 终点的行号# @param colEnd int整型 终点的列号# @return int整型def calcTime(self, lights, timePerRoad, rowStart, colStart, rowEnd, colEnd):n, m = len(lights), len(lights[0])directions = [(-1, 0), (0, 1), (1, 0), (0, -1)]  # 上、右、下、左vis = [[[False] * 4] * m for _ in range(n)]def valid(row, col):return 0 <= row < n and 0 <= col < mdef dfs(row, col, direction, time):nonlocal resultif vis[row][col][direction] or time >= result:return# 到达终点if row == rowEnd and col == colEnd:result = min(result, time)returnvis[row][col][direction] = Truefor d in range(-1, 2, 1):new_dir = (direction + d + 4) % 4dr, dc = directions[new_dir]new_row, new_col = row + dc, col + drif not valid(new_row, new_col):continueif d == -1 or d == 0:  # 左转或直行dfs(new_row, new_col, new_dir, time +timePerRoad + lights[row][col])else:  # 右转dfs(new_row, new_col, new_dir, time + timePerRoad)vis[row][col][direction] = Falseresult = inffor d in range(4):dfs(rowStart, colStart, d, 0)return result if result != inf else -1

C++

class Solution {
private:vector<vector<int>> lights;int timePerRoad;int rowEnd, colEnd;vector<vector<vector<bool>>> vis;vector<vector<int>> directions = {{-1, 0}, {0, 1}, {1, 0}, {0, -1}}; // 上、右、下、左int result;public:int calcTime(vector<vector<int>>& lights, int timePerRoad, int rowStart, int colStart, int rowEnd, int colEnd) {int n = lights.size(), m = lights[0].size();this->lights = lights;this->timePerRoad = timePerRoad;this->rowEnd = rowEnd;this->colEnd = colEnd;this->result = INT_MAX;this->vis = vector<vector<vector<bool>>>(n, vector<vector<bool>>(m, vector<bool>(4, false)));for (int d = 0; d < 4; d++) {dfs(rowStart, colStart, d, 0);}return result != INT_MAX ? result : -1;}private:bool valid(int row, int col) {return 0 <= row && row < vis.size() && 0 <= col && col < vis[0].size();}void dfs(int row, int col, int direction, int time) {if (vis[row][col][direction] || time >= result) {return;}// 到达终点if (row == rowEnd && col == colEnd) {result = min(result, time);return;}vis[row][col][direction] = true;for (int d = -1; d <= 1; d++) {int newDir = (direction + d + 4) % 4;int dr = directions[newDir][0], dc = directions[newDir][1];int newRow = row + dc, newCol = col + dr;if (!valid(newRow, newCol)) {continue;}if (d == -1 || d == 0) { // 左转或直行dfs(newRow, newCol, newDir, time + timePerRoad + lights[row][col]);} else { // 右转,不需要路口等待时间dfs(newRow, newCol, newDir, time + timePerRoad);}}vis[row][col][direction] = false;}
};

‍❤️‍华为OD机试面试交流群每日真题分享): 加V时备注“华为od加群”

🙏整理题解不易, 如果有帮助到您,请给点个赞 ‍❤️‍ 和收藏 ⭐,让更多的人看到。🙏🙏🙏

这篇关于路口最短时间问题 - 华为OD统一考试的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

如何解决Spring MVC中响应乱码问题

《如何解决SpringMVC中响应乱码问题》:本文主要介绍如何解决SpringMVC中响应乱码问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC最新响应中乱码解决方式以前的解决办法这是比较通用的一种方法总结Spring MVC最新响应中乱码解

pip无法安装osgeo失败的问题解决

《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

解决Java中基于GeoTools的Shapefile读取乱码的问题

《解决Java中基于GeoTools的Shapefile读取乱码的问题》本文主要讨论了在使用Java编程语言进行地理信息数据解析时遇到的Shapefile属性信息乱码问题,以及根据不同的编码设置进行属... 目录前言1、Shapefile属性字段编码的情况:一、Shp文件常见的字符集编码1、System编码

Spring MVC使用视图解析的问题解读

《SpringMVC使用视图解析的问题解读》:本文主要介绍SpringMVC使用视图解析的问题解读,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC使用视图解析1. 会使用视图解析的情况2. 不会使用视图解析的情况总结Spring MVC使用视图

Redis解决缓存击穿问题的两种方法

《Redis解决缓存击穿问题的两种方法》缓存击穿问题也叫热点Key问题,就是⼀个被高并发访问并且缓存重建业务较复杂的key突然失效了,无数的请求访问会在瞬间给数据库带来巨大的冲击,本文给大家介绍了Re... 目录引言解决办法互斥锁(强一致,性能差)逻辑过期(高可用,性能优)设计逻辑过期时间引言缓存击穿:给

Java程序运行时出现乱码问题的排查与解决方法

《Java程序运行时出现乱码问题的排查与解决方法》本文主要介绍了Java程序运行时出现乱码问题的排查与解决方法,包括检查Java源文件编码、检查编译时的编码设置、检查运行时的编码设置、检查命令提示符的... 目录一、检查 Java 源文件编码二、检查编译时的编码设置三、检查运行时的编码设置四、检查命令提示符