路口最短时间问题 - 华为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

相关文章

Java内存泄漏问题的排查、优化与最佳实践

《Java内存泄漏问题的排查、优化与最佳实践》在Java开发中,内存泄漏是一个常见且令人头疼的问题,内存泄漏指的是程序在运行过程中,已经不再使用的对象没有被及时释放,从而导致内存占用不断增加,最终... 目录引言1. 什么是内存泄漏?常见的内存泄漏情况2. 如何排查 Java 中的内存泄漏?2.1 使用 J

numpy求解线性代数相关问题

《numpy求解线性代数相关问题》本文主要介绍了numpy求解线性代数相关问题,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 在numpy中有numpy.array类型和numpy.mat类型,前者是数组类型,后者是矩阵类型。数组

解决systemctl reload nginx重启Nginx服务报错:Job for nginx.service invalid问题

《解决systemctlreloadnginx重启Nginx服务报错:Jobfornginx.serviceinvalid问题》文章描述了通过`systemctlstatusnginx.se... 目录systemctl reload nginx重启Nginx服务报错:Job for nginx.javas

Redis缓存问题与缓存更新机制详解

《Redis缓存问题与缓存更新机制详解》本文主要介绍了缓存问题及其解决方案,包括缓存穿透、缓存击穿、缓存雪崩等问题的成因以及相应的预防和解决方法,同时,还详细探讨了缓存更新机制,包括不同情况下的缓存更... 目录一、缓存问题1.1 缓存穿透1.1.1 问题来源1.1.2 解决方案1.2 缓存击穿1.2.1

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

解决Cron定时任务中Pytest脚本无法发送邮件的问题

《解决Cron定时任务中Pytest脚本无法发送邮件的问题》文章探讨解决在Cron定时任务中运行Pytest脚本时邮件发送失败的问题,先优化环境变量,再检查Pytest邮件配置,接着配置文件确保SMT... 目录引言1. 环境变量优化:确保Cron任务可以正确执行解决方案:1.1. 创建一个脚本1.2. 修

Python 标准库time时间的访问和转换问题小结

《Python标准库time时间的访问和转换问题小结》time模块为Python提供了处理时间和日期的多种功能,适用于多种与时间相关的场景,包括获取当前时间、格式化时间、暂停程序执行、计算程序运行时... 目录模块介绍使用场景主要类主要函数 - time()- sleep()- localtime()- g

SpringBoot项目删除Bean或者不加载Bean的问题解决

《SpringBoot项目删除Bean或者不加载Bean的问题解决》文章介绍了在SpringBoot项目中如何使用@ComponentScan注解和自定义过滤器实现不加载某些Bean的方法,本文通过实... 使用@ComponentScan注解中的@ComponentScan.Filter标记不加载。@C

VMWare报错“指定的文件不是虚拟磁盘“或“The file specified is not a virtual disk”问题

《VMWare报错“指定的文件不是虚拟磁盘“或“Thefilespecifiedisnotavirtualdisk”问题》文章描述了如何修复VMware虚拟机中出现的“指定的文件不是虚拟... 目录VMWare报错“指定的文件不是虚拟磁盘“或“The file specified is not a virt

Mybatis提示Tag name expected的问题及解决

《Mybatis提示Tagnameexpected的问题及解决》MyBatis是一个开源的Java持久层框架,用于将Java对象与数据库表进行映射,它提供了一种简单、灵活的方式来访问数据库,同时也... 目录概念说明MyBATis特点发现问题解决问题第一种方式第二种方式问题总结概念说明MyBatis(原名