POJ - 2686 Traveling by Stagecoach——状压dp

网友投稿 232 2022-11-27

POJ - 2686 Traveling by Stagecoach——状压dp

用g++的话注意输出用。3f而不是。3lf,用c++的话就没问题了

#include #include #include #include #include using namespace std;typedef pair P;const double INF = 0x3f3f3f3f;int n, m, p, a, b, t[100];vector

g[100];double dp[1<<10][100];double rec(int s, int u) { if (dp[s][u] >= 0) return dp[s][u]; if (u == b) return 0; if (s == 0) return INF; double ans = INF; for (int i = 0; i < g[u].size(); i++) { int v = g[u][i].first, val = g[u][i].second; for (int j = 0; j < n; j++) { if (s & (1< 1e8) printf("Impossible\n"); else printf("%.3lf\n", ans); } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:基于MODBUS通信协议的低压交流配电柜智能监控系统
下一篇:UVA 1252 Twenty Questions——dp
相关文章

 发表评论

暂时没有评论,来抢沙发吧~