编写题解 1282: 公交汽车 摘要:解题思路:注意事项:参考代码:l = list(map(int,input().strip().split()))n = int(input())dp = [0 for i in range(n)]d…… 题解列表 2024年10月23日 0 点赞 0 评论 55 浏览 评分:0.0
1282: 公交汽车(动态规划) 摘要:核心:动态规划,dp数组代码:cost = [int(x) for x in input().split()] n = int(input()) dp = [0] * n # dp[i]物品(站…… 题解列表 2024年08月22日 0 点赞 0 评论 99 浏览 评分:0.0
题解: 公交汽车【Python】 摘要:解题思路:动态规划。参考代码:cost = list(map(int, input().split())) n = int(input()) dp = [0 for i in range(n)] …… 题解列表 2022年12月03日 0 点赞 0 评论 127 浏览 评分:9.9
公交汽车(python代码) 摘要:解题思路:注意事项:参考代码:fee = list(map(int,input().split()))n = int(input())dp = [99999999]*ndp[0] = fee[0]fo…… 题解列表 2022年02月07日 0 点赞 0 评论 343 浏览 评分:9.9