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