摘要: n个活动,有起始时间和价值,时间不冲突的情况下的最大价值和对应的策略, package main import ( "fmt" "sort" "strconv" "strings" ) func main() { arr := [][]int{ {1, 4, 5}, {3, 5, 1}, {0, 6 阅读全文
posted @ 2022-08-16 20:34 Notomato 阅读(97) 评论(0) 推荐(0)