热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

CodeforcesRound#321(Div.2)KefaandDishes状压+spfa

本文介绍了CodeforcesRound#321(Div.2)比赛中的问题KefaandDishes,通过状压和spfa算法解决了这个问题。给定一个有向图,求在不超过m步的情况下,能获得的最大权值和。点不能重复走。文章详细介绍了问题的题意、解题思路和代码实现。

原题链接:http://codeforces.com/contest/580/problem/D

题意:

给你一些一个有向图,求不超过m步的情况下,能获得的最大权值和是多少,点不能重复走。

题解:

令$dp[u][s]$为在节点u的时候状态是s的最大值。利用spfa的松弛操作来转移。

代码:

#include
#include

#include

#include

#include

#define MAX_S 1<<19
#define MAX_N 22
using namespace std;typedef long long ll;struct edge {
public:int to;ll cost;edge(int t, ll c) : to(t), cost(c) { }edge() { }
};vector
G[MAX_N];
ll g[MAX_N][MAX_N];
ll a[MAX_N];
int n,m,k;int ones[MAX_S];ll dp[MAX_N][MAX_S];struct node {
public:ll s;int u;node(ll ss, int uu) : s(ss), u(uu) { }node() { }
};queue
que;
bool inQue[MAX_N][MAX_S];int main() {cin.sync_with_stdio(false);cin >> n >> m >> k;for (int i &#61; 0; i <(1 <) {int x &#61; i;while (x)ones[i] &#43;&#61; (x & 1), x >>&#61; 1;}for (int i &#61; 0; i )cin >> a[i];for (int i &#61; 0; i ) {int x, y;ll c;cin >> x >> y >> c;x--, y--;g[y][x] &#61; c;}for (int i &#61; 0; i )for (int j &#61; 0; j )G[i].push_back(edge(j, g[i][j]));ll ans &#61; 0;for (int i &#61; 0; i ) {dp[i][1 < a[i];que.push(node(1 << i, i));inQue[i][1 <1;}while (!que.empty()) {node now &#61; que.front();que.pop();ll s &#61; now.s;int u &#61; now.u;inQue[u][s] &#61; 0;for (int i &#61; 0; i ) {int v &#61; G[u][i].to;ll c &#61; G[u][i].cost;if (s & (1 <continue;ll ns &#61; s | (1 << v);if (ones[ns] > m)continue;if (dp[v][ns] c) {dp[v][ns] &#61; dp[u][s] &#43; a[v] &#43; c;que.push(node(ns, v));inQue[v][ns] &#61; 1;}}}for (int i &#61; 0; i )for (int s &#61; 0; s <(1 <)if (ones[s] &#61;&#61; m)ans &#61; max(ans, dp[i][s]);cout < endl;return 0;
}

 

转:https://www.cnblogs.com/HarryGuo2012/p/4831101.html



推荐阅读
author-avatar
倍儿傻的叶子奇太_900
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有