golang力扣leetcode 2045.到达目的地的第二短时间

简介: golang力扣leetcode 2045.到达目的地的第二短时间

2045.到达目的地的第二短时间

2045.到达目的地的第二短时间

题解

求次短重点在于这一句else if dist[next][0] < cost && cost < dist[next][1],而边没有权重,可以看作无向图,先把路径算作1即可

代码

package main
import (
  "math"
)
type pair struct {
  nextNode, step int
}
func secondMinimum(n int, edges [][]int, time int, change int) int {
  //双向图,graph存边
  graph := make([][]int, n+1)
  for _, e := range edges {
    x, y := e[0], e[1]
    graph[x] = append(graph[x], y)
    graph[y] = append(graph[y], x)
  }
  //dist[n][0]表示1到n的最短路径,dist[n][1]表示1到n的次短路径
  dist := make([][2]int, n+1)
  for i := 1; i <= n; i++ {
    dist[i] = [2]int{math.MaxInt32, math.MaxInt32}
  }
  queue := []pair{{
    nextNode: 1,
    step:     0,
  }}
  for dist[n][1] == math.MaxInt32 {
    top := queue[0]
    queue = queue[1:]
    for _, next := range graph[top.nextNode] {
      cost := top.step + 1
      if cost < dist[next][0] {
        dist[next][0] = cost
        queue = append(queue, pair{
          nextNode: next,
          step:     cost,
        })
      } else if dist[next][0] < cost && cost < dist[next][1] {
        dist[next][1] = cost
        queue = append(queue, pair{
          nextNode: next,
          step:     cost,
        })
      }
    }
  }
  ans := 0
  for i := 1; i <= dist[n][1]; i++ {
    if ans%(2*change) >= change {
      //进入红灯区还需要等待多久才能走
      ans += 2*change - ans%(2*change)
    }
    ans += time
  }
  return ans
}
目录
相关文章
|
3月前
|
程序员 C语言
【C语言】LeetCode(力扣)上经典题目
【C语言】LeetCode(力扣)上经典题目
|
3月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
108 0
|
3月前
力扣(LeetCode)数据结构练习题(2)
力扣(LeetCode)数据结构练习题(2)
36 0
|
3月前
|
存储
力扣(LeetCode)数据结构练习题
力扣(LeetCode)数据结构练习题
66 0
|
6月前
2670.找出不同元素数目差数组-力扣(LeetCode)
2670.找出不同元素数目差数组-力扣(LeetCode)
46 0
|
4月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
5月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
67 6
|
5月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
133 2
|
2月前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
59 1
|
4月前
|
数据采集 负载均衡 安全
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口
本文提供了多个多线程编程问题的解决方案,包括设计有限阻塞队列、多线程网页爬虫、红绿灯路口等,每个问题都给出了至少一种实现方法,涵盖了互斥锁、条件变量、信号量等线程同步机制的使用。
LeetCode刷题 多线程编程九则 | 1188. 设计有限阻塞队列 1242. 多线程网页爬虫 1279. 红绿灯路口