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
题目 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: 公交汽车,c++代码实现,通俗易懂,超级详细 摘要:#1282: 公交汽车,c++代码实现 ####题目描述: [DOTCPP1282公交汽车](http://https://www.dotcpp.com/oj/problem1282.html "…… 题解列表 2023年08月22日 0 点赞 0 评论 331 浏览 评分:9.9
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
记忆化搜索 摘要:解题思路:自顶而下搜索最小值注意事项:记录答案防止时间爆炸参考代码:#include<bits/stdc++.h>#define endl '\n'using namespace st…… 题解列表 2023年02月06日 0 点赞 0 评论 57 浏览 评分:0.0
公交汽车 区间Dp 摘要:```cpp #include #include using namespace std; int n; int dp[105],a[15]; int main() { for (i…… 题解列表 2022年03月30日 0 点赞 0 评论 200 浏览 评分:9.9
公交汽车动态规划c++ 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstdio>#include<algorithm>#include<cmath>#include<cstring>…… 题解列表 2022年03月06日 0 点赞 0 评论 326 浏览 评分:0.0
优质题解 公交汽车(C++) 摘要:- 定义变量 题目中说明有需要10个整数代表不同路程的费用,于是先声明一个数组(名为worth,长度为11,worth[0]为空,worth[1~10]表示一次性行走1~10公里所需费用) 接着定…… 题解列表 2022年02月07日 0 点赞 0 评论 787 浏览 评分:9.6
动态规划c++ 摘要:解题思路:求出每一段路的最优情况,然后求得最小值参考代码:#include <iostream> #include <algorithm> using namespace std; int m…… 题解列表 2021年02月24日 0 点赞 1 评论 398 浏览 评分:9.9
公交汽车-题解(C++代码)解法简单易懂 摘要:这题的思路和零钱兑换差不多,直接动态规划 ```cpp #include using namespace std; int fee[11],n,dp[60000];//随便开一个足够大的数组就…… 题解列表 2021年01月30日 0 点赞 0 评论 570 浏览 评分:6.0