首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
uva1025专题
动态规划--uva1025 城市里的间谍
影响决策的因素有当前时间t和所处车站,所以dp[t][n],2维。 求等待最短时间,即dp[t][n] 决策有3个,等待1分钟,向右坐火车,向左坐火车。 #include <iostream> #include <cstdio> #include <cstring> using namespacestd; const int maxn =255; cons
阅读更多...