1282: 公交汽车 摘要:```cpp #include #define MAX 101 #define INF 50001 #define A_JOURNEY 10 using namespace std; in…… 题解列表 2023年04月15日 0 点赞 0 评论 115 浏览 评分:9.9
1282: 公交汽车,c++代码实现,通俗易懂,超级详细 摘要:#1282: 公交汽车,c++代码实现 ####题目描述: [DOTCPP1282公交汽车](http://https://www.dotcpp.com/oj/problem1282.html "…… 题解列表 2023年08月22日 0 点赞 0 评论 331 浏览 评分:9.9
题目 1282: 公交汽车(培养这类题的感觉) 摘要:解题思路://先分别求到1,2,3,。。。15站的min//第15站的min是踩在前面站的min上来的//i=2,k=1;minv=min(minv,dp[1]+pri[1])=min(50000,1…… 题解列表 2024年03月15日 0 点赞 0 评论 215 浏览 评分:9.9
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
编写题解 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和dfs 还是dfs更好用 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; int a[11],n,kkk[110]; void dfs(int x,…… 题解列表 2024年12月14日 0 点赞 0 评论 71 浏览 评分:0.0