算法训练营day30,贪心算法4

import "sort"

// 860. 柠檬水找零

func lemonadeChange(bills []int) bool {

//如果最开始就大于5元,肯定无法找零直接返回false

if len(bills) > 0 && bills[0] > 5 {

return false

}

five := 0

ten := 0

twenty := 0

for i := 0; i < len(bills); i++ {

//等于5元直接收下不用找零,five++

if bills[i] == 5 {

five++

//如果是10元,且有5元可以找零

} else if bills[i] == 10 && five > 0 {

ten++

five--

} else if bills[i] == 20 && five > 0 {

//如果是20元,可以找10元+5元或者3个五元,优先采用10+5方式

if ten > 0 {

twenty++

ten--

five--

} else {

if five < 3 {

return false

}

five -= 3

}

//如果没有五元找零,直接返回false

} else if five == 0 && (bills[i] == 10 || bills[i] == 20) {

return false

}

}

return true

}

//406. 根据身高重建队列

func reconstructQueue(people [][]int) [][]int {

sort.Slice(people, func(i, j int) bool {

if people[i][0] == people[j][0] { //如果身高相等则按照k从小到大排序

return people[i][1] < people[j][1]

}

return people[i][0] > people[j][0] //身高由大到小排序

})

// 再按照K进行插入排序,优先插入K小的

for i := 0; i < len(people); i++ {

p := people[i]

copy(people[p[1]+1:i+1], people[p[1]:i+1])

people[p[1]] = p

}

return people

}

//452. 用最少数量的箭引爆气球

func findMinArrowShots(points [][]int) int {

if len(points) == 0 {

return 0

}

arrow := 1 //弓箭数量

//按第一位从小到大排序

sort.Slice(points, func(i, j int) bool {

return points[i][0] < points[j][0]

})

for i := 1; i < len(points); i++ {

//如果前一个右边界比当前左边界小说明无法一起射破,需要增加一支箭

if points[i-1][1] < points[i][0] {

arrow++

} else {

// 如果当前边界比之前边界大,则沿用之前边界

if points[i][1] > points[i-1][1] {

points[i][1] = points[i-1][1]

}

}

}

return arrow

}

相关推荐
龙的爹23336 分钟前
论文翻译 | The Capacity for Moral Self-Correction in Large Language Models
人工智能·深度学习·算法·机器学习·语言模型·自然语言处理·prompt
鸣弦artha38 分钟前
蓝桥杯——杨辉三角
java·算法·蓝桥杯·eclipse
我是聪明的懒大王懒洋洋42 分钟前
力扣力扣力:动态规划入门(1)
算法·leetcode·动态规划
未知陨落1 小时前
数据结构——二叉搜索树
开发语言·数据结构·c++·二叉搜索树
丶Darling.1 小时前
Day44 | 动态规划 :状态机DP 买卖股票的最佳时机IV&&买卖股票的最佳时机III
算法·动态规划
TN_stark9322 小时前
多进程/线程并发服务器
服务器·算法·php
汉克老师2 小时前
GESP4级考试语法知识(贪心算法(四))
开发语言·c++·算法·贪心算法·图论·1024程序员节
smj2302_796826523 小时前
用枚举算法解决LeetCode第3348题最小可整除数位乘积II
python·算法·leetcode
CyberMuse3 小时前
表的数据结构和常见操作
数据结构
爱吃生蚝的于勒3 小时前
C语言最简单的扫雷实现(解析加原码)
c语言·开发语言·学习·计算机网络·算法·游戏程序·关卡设计