摘要: 1824. 最少侧跳次数 题解 dp 数组: dp[i] 表示 到 第i条赛道的最小侧跳次数 class Solution { public int minSideJumps(int[] obstacles) { int INF = (int) 0x3f3f3f3f; int len = obsta 阅读全文
posted @ 2023-01-21 13:30 Eiffelzero 阅读(14) 评论(0) 推荐(0)