A New Graph game

Source: Internet
Author: User

Click Open Link

Question: Give you an undirected graph of N nodes, then give m edge, and give the distance from I edge to J edge. Then you can check whether a child ring exists. If so, the shortest distance and

Resolution: Diagram: select the source and sink, and set the traffic from the source to the nodes to 1 and the cost to 0. then the minimum cost flow is used. When the returned value is traffic sum, that is, when flow is <n, no is output because the minimum number of edges in all edges is N.

The rest works the same way as tour, and the distance between two points is the shortest distance.

#include<iostream>#include<cstdio>#include<cstring>#include<queue>using namespace std;const int maxn = 10000;const int maxm = 100000;const int INF = 0xfffffff;struct Edge{int to, next, cap, flow, cost;}edge[ maxm ];int head[ maxn ], tol;int pre[ maxn ], dis[ maxn ];bool vis[ maxn ];int N;void init( int n ){N = n;tol = 0;memset( head, -1, sizeof( head ) );}void addedge( int u, int v, int cap, int cost ){edge[ tol ].to = v;edge[ tol ].cap = cap;edge[ tol ].cost = cost;edge[ tol ].flow = 0;edge[ tol ].next = head[ u ];head[ u ] = tol++;edge[ tol ].to = u;edge[ tol ].cap = 0;edge[ tol ].cost = -cost;edge[ tol ].flow = 0;edge[ tol ].next = head[ v ];head[ v ] = tol++;}bool spfa( int s, int t ){queue< int > q;for( int i = 0; i < N; ++i ){dis[ i ] = INF;vis[ i ] = false;pre[ i ] = -1;}dis[ s ] = 0;vis[ s ] = true;q.push( s );while( !q.empty( ) ){int u = q.front();q.pop();vis[ u ] = false;for( int i = head[ u ]; i != - 1; i = edge[ i ].next ){int v = edge[ i ].to;if( edge[ i ].cap > edge[ i ].flow && dis[ v ] > dis[ u ] + edge[ i ].cost ){dis[ v ] = dis[ u ] + edge[ i ].cost;pre[ v ] = i;if( !vis[ v ] ){vis[ v ] = true;q.push( v );}}}}if( pre[ t ] == -1 ) return false;elsereturn true;}struct node{int f, c;};//node a;node minCostMaxflow( int s, int t, int &cost ){int flow = 0;cost = 0;while( spfa( s, t ) ){int Min = INF;for( int i = pre[ t ]; i != - 1; i = pre[ edge[ i ^ 1 ].to ] ){if( Min > edge[ i ].cap - edge[ i ].flow )Min = edge[ i ].cap - edge[ i ].flow;}for( int i = pre[ t ]; i  != -1; i = pre[ edge[ i ^ 1 ].to ] ){edge[ i ].flow += Min;edge[ i ^ 1 ].flow -= Min;cost += edge[ i ].cost * Min;}flow += Min;}node ans;ans.f = flow;ans.c = cost;return ans;}#define INF 0xfffffffint mapp[ maxn ][ maxn ];int main(){int Case;int n, m;scanf( "%d", &Case );for( int k = 1; k <= Case; ++k ){scanf( "%d%d", &n, &m );for( int i = 0; i <= n; ++i ){for( int j = 0; j <= n; ++j ){mapp[ i ][ j ] = INF;}}int start = 0, end = 2 * n + 1, N = 2 * n + 2;init( N );int x, y, value;for( int i = 1; i <= n; ++i ){addedge( 0, i, 1, 0 );addedge( n + i, end, 1, 0 );}int Max = 0;for( int i = 0; i < m; ++i ){scanf( "%d%d%d", &x, &y, &value );int temp = max( x, y );if( Max < temp ){Max = temp;}if( mapp[ x ][ y ] > value ){mapp[ x ][ y ] = mapp[ y ][ x ] = value;}}for( int i = 1; i <= n ; ++i ){for( int j = 1; j <= n; ++j ){if( mapp[ i ][ j ] != INF ){addedge( i, n + j, 1, mapp[ i ][ j ] );}}}int cost;node ans = minCostMaxflow( start, end, cost );printf( "Case %d: ", k );if( ans.f >= n ){printf( "%d\n", ans.c );}else{puts( "NO" );}} return 0;}


A New Graph game

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.