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

import "sort"

// 860. 柠檬水找零

func lemonadeChange(bills \[\]int) bool {

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

if len(bills) > 0 && bills0 > 5 {

return false

}

five := 0

ten := 0

twenty := 0

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

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

if billsi == 5 {

five++

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

} else if billsi == 10 && five > 0 {

ten++

five--

} else if billsi == 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 && (billsi == 10 || billsi == 20) {

return false

}

}

return true

}

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

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

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

if peoplei0 == peoplej0 { //如果身高相等则按照k从小到大排序

return peoplei1 < peoplej1

}

return peoplei0 > peoplej0 //身高由大到小排序

})

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

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

p := peoplei

copy(peoplep\[1+1:i+1], peoplep\[1:i+1])

peoplep\[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 pointsi0 < pointsj0

})

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

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

if pointsi-11 < pointsi0 {

arrow++

} else {

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

if pointsi1 > pointsi-11 {

pointsi1 = pointsi-11

}

}

}

return arrow

}

相关推荐
名字还没想好☜15 小时前
Go 实现指数退避重试:context 取消、抖动 jitter 与什么时候别重试
后端·golang·go
政企项目老覃15 小时前
大模型 Agent 自主任务编排:电商客服地址解析从 12% 失败率到 2.1% 的落地复盘
人工智能·程序人生·算法
kukubuzai15 小时前
双指针系列二--末尾篇(3道题)
c++·算法·leetcode
动词ing16 小时前
【题目练习】动态规划+背包问题
数据结构·目标检测
杜 硕16 小时前
单链表经典算法题
数据结构·算法
小O的算法实验室16 小时前
IEEE TCYB,着色旅行商问题:模型、求解与应用
算法
h_a_o777oah16 小时前
【图论】网络流:Dinic 算法模板实现原理及解题技巧
c++·算法·图论·acm·网络流·最小割·dinic算法
daxiangxm16 小时前
【趣味休息】“围住小猫在线玩”-“困住小猫”,又回来了
数据结构·人工智能·vscode·github·php
我不会起名字32217 小时前
一天一道力扣Hot100(37):深度优先算法--括号生成
java·数据结构·c++·后端·python·算法·go