www.pudn.com > match-v3.3.src.rar > maxflow.cpp


/* maxflow.cpp */ 
/* 
    Copyright 2001 Vladimir Kolmogorov (vnk@cs.cornell.edu), Yuri Boykov (yuri@csd.uwo.ca). 
 
    This program is free software; you can redistribute it and/or modify 
    it under the terms of the GNU General Public License as published by 
    the Free Software Foundation; either version 2 of the License, or 
    (at your option) any later version. 
 
    This program is distributed in the hope that it will be useful, 
    but WITHOUT ANY WARRANTY; without even the implied warranty of 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    GNU General Public License for more details. 
 
    You should have received a copy of the GNU General Public License 
    along with this program; if not, write to the Free Software 
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 
*/ 
 
 
#include  
#include "graph.h" 
 
/* 
	special constants for node->parent 
*/ 
#define TERMINAL ( (arc *) 1 )		/* to terminal */ 
#define ORPHAN   ( (arc *) 2 )		/* orphan */ 
 
#define INFINITE_D 1000000000		/* infinite distance to the terminal */ 
 
/***********************************************************************/ 
 
/* 
	Functions for processing active list. 
	i->next points to the next node in the list 
	(or to i, if i is the last node in the list). 
	If i->next is NULL iff i is not in the list. 
 
	There are two queues. Active nodes are added 
	to the end of the second queue and read from 
	the front of the first queue. If the first queue 
	is empty, it is replaced by the second queue 
	(and the second queue becomes empty). 
*/ 
 
inline void Graph::set_active(node *i) 
{ 
	if (!i->next) 
	{ 
		/* it's not in the list yet */ 
		if (queue_last[1]) queue_last[1] -> next = i; 
		else               queue_first[1]        = i; 
		queue_last[1] = i; 
		i -> next = i; 
	} 
} 
 
/* 
	Returns the next active node. 
	If it is connected to the sink, it stays in the list, 
	otherwise it is removed from the list 
*/ 
inline Graph::node * Graph::next_active() 
{ 
	node *i; 
 
	while ( 1 ) 
	{ 
		if (!(i=queue_first[0])) 
		{ 
			queue_first[0] = i = queue_first[1]; 
			queue_last[0]  = queue_last[1]; 
			queue_first[1] = NULL; 
			queue_last[1]  = NULL; 
			if (!i) return NULL; 
		} 
 
		/* remove it from the active list */ 
		if (i->next == i) queue_first[0] = queue_last[0] = NULL; 
		else              queue_first[0] = i -> next; 
		i -> next = NULL; 
 
		/* a node in the list is active iff it has a parent */ 
		if (i->parent) return i; 
	} 
} 
 
/***********************************************************************/ 
 
void Graph::maxflow_init() 
{ 
	node *i; 
 
	queue_first[0] = queue_last[0] = NULL; 
	queue_first[1] = queue_last[1] = NULL; 
	orphan_first = NULL; 
 
	for (i=node_block->ScanFirst(); i; i=node_block->ScanNext()) 
	{ 
		i -> next = NULL; 
		i -> TS = 0; 
		if (i->tr_cap > 0) 
		{ 
			/* i is connected to the source */ 
			i -> is_sink = 0; 
			i -> parent = TERMINAL; 
			set_active(i); 
			i -> TS = 0; 
			i -> DIST = 1; 
		} 
		else if (i->tr_cap < 0) 
		{ 
			/* i is connected to the sink */ 
			i -> is_sink = 1; 
			i -> parent = TERMINAL; 
			set_active(i); 
			i -> TS = 0; 
			i -> DIST = 1; 
		} 
		else 
		{ 
			i -> parent = NULL; 
		} 
	} 
	TIME = 0; 
} 
 
/***********************************************************************/ 
 
void Graph::augment(arc *middle_arc) 
{ 
	node *i; 
	arc *a; 
	captype bottleneck; 
	nodeptr *np; 
 
 
	/* 1. Finding bottleneck capacity */ 
	/* 1a - the source tree */ 
	bottleneck = middle_arc -> r_cap; 
	for (i=middle_arc->sister->head; ; i=a->head) 
	{ 
		a = i -> parent; 
		if (a == TERMINAL) break; 
		if (bottleneck > a->sister->r_cap) bottleneck = a -> sister -> r_cap; 
	} 
	if (bottleneck > i->tr_cap) bottleneck = i -> tr_cap; 
	/* 1b - the sink tree */ 
	for (i=middle_arc->head; ; i=a->head) 
	{ 
		a = i -> parent; 
		if (a == TERMINAL) break; 
		if (bottleneck > a->r_cap) bottleneck = a -> r_cap; 
	} 
	if (bottleneck > - i->tr_cap) bottleneck = - i -> tr_cap; 
 
 
	/* 2. Augmenting */ 
	/* 2a - the source tree */ 
	middle_arc -> sister -> r_cap += bottleneck; 
	middle_arc -> r_cap -= bottleneck; 
	for (i=middle_arc->sister->head; ; i=a->head) 
	{ 
		a = i -> parent; 
		if (a == TERMINAL) break; 
		a -> r_cap += bottleneck; 
		a -> sister -> r_cap -= bottleneck; 
		if (!a->sister->r_cap) 
		{ 
			/* add i to the adoption list */ 
			i -> parent = ORPHAN; 
			np = nodeptr_block -> New(); 
			np -> ptr = i; 
			np -> next = orphan_first; 
			orphan_first = np; 
		} 
	} 
	i -> tr_cap -= bottleneck; 
	if (!i->tr_cap) 
	{ 
		/* add i to the adoption list */ 
		i -> parent = ORPHAN; 
		np = nodeptr_block -> New(); 
		np -> ptr = i; 
		np -> next = orphan_first; 
		orphan_first = np; 
	} 
	/* 2b - the sink tree */ 
	for (i=middle_arc->head; ; i=a->head) 
	{ 
		a = i -> parent; 
		if (a == TERMINAL) break; 
		a -> sister -> r_cap += bottleneck; 
		a -> r_cap -= bottleneck; 
		if (!a->r_cap) 
		{ 
			/* add i to the adoption list */ 
			i -> parent = ORPHAN; 
			np = nodeptr_block -> New(); 
			np -> ptr = i; 
			np -> next = orphan_first; 
			orphan_first = np; 
		} 
	} 
	i -> tr_cap += bottleneck; 
	if (!i->tr_cap) 
	{ 
		/* add i to the adoption list */ 
		i -> parent = ORPHAN; 
		np = nodeptr_block -> New(); 
		np -> ptr = i; 
		np -> next = orphan_first; 
		orphan_first = np; 
	} 
 
 
	flow += bottleneck; 
} 
 
/***********************************************************************/ 
 
void Graph::process_source_orphan(node *i) 
{ 
	node *j; 
	arc *a0, *a0_min = NULL, *a; 
	nodeptr *np; 
	int d, d_min = INFINITE_D; 
 
	/* trying to find a new parent */ 
	for (a0=i->first; a0; a0=a0->next) 
	if (a0->sister->r_cap) 
	{ 
		j = a0 -> head; 
		if (!j->is_sink && (a=j->parent)) 
		{ 
			/* checking the origin of j */ 
			d = 0; 
			while ( 1 ) 
			{ 
				if (j->TS == TIME) 
				{ 
					d += j -> DIST; 
					break; 
				} 
				a = j -> parent; 
				d ++; 
				if (a==TERMINAL) 
				{ 
					j -> TS = TIME; 
					j -> DIST = 1; 
					break; 
				} 
				if (a==ORPHAN) { d = INFINITE_D; break; } 
				j = a -> head; 
			} 
			if (dhead; j->TS!=TIME; j=j->parent->head) 
				{ 
					j -> TS = TIME; 
					j -> DIST = d --; 
				} 
			} 
		} 
	} 
 
	if (i->parent = a0_min) 
	{ 
		i -> TS = TIME; 
		i -> DIST = d_min + 1; 
	} 
	else 
	{ 
		/* no parent is found */ 
		i -> TS = 0; 
 
		/* process neighbors */ 
		for (a0=i->first; a0; a0=a0->next) 
		{ 
			j = a0 -> head; 
			if (!j->is_sink && (a=j->parent)) 
			{ 
				if (a0->sister->r_cap) set_active(j); 
				if (a!=TERMINAL && a!=ORPHAN && a->head==i) 
				{ 
					/* add j to the adoption list */ 
					j -> parent = ORPHAN; 
					np = nodeptr_block -> New(); 
					np -> ptr = j; 
					if (orphan_last) orphan_last -> next = np; 
					else             orphan_first        = np; 
					orphan_last = np; 
					np -> next = NULL; 
				} 
			} 
		} 
	} 
} 
 
void Graph::process_sink_orphan(node *i) 
{ 
	node *j; 
	arc *a0, *a0_min = NULL, *a; 
	nodeptr *np; 
	int d, d_min = INFINITE_D; 
 
	/* trying to find a new parent */ 
	for (a0=i->first; a0; a0=a0->next) 
	if (a0->r_cap) 
	{ 
		j = a0 -> head; 
		if (j->is_sink && (a=j->parent)) 
		{ 
			/* checking the origin of j */ 
			d = 0; 
			while ( 1 ) 
			{ 
				if (j->TS == TIME) 
				{ 
					d += j -> DIST; 
					break; 
				} 
				a = j -> parent; 
				d ++; 
				if (a==TERMINAL) 
				{ 
					j -> TS = TIME; 
					j -> DIST = 1; 
					break; 
				} 
				if (a==ORPHAN) { d = INFINITE_D; break; } 
				j = a -> head; 
			} 
			if (dhead; j->TS!=TIME; j=j->parent->head) 
				{ 
					j -> TS = TIME; 
					j -> DIST = d --; 
				} 
			} 
		} 
	} 
 
	if (i->parent = a0_min) 
	{ 
		i -> TS = TIME; 
		i -> DIST = d_min + 1; 
	} 
	else 
	{ 
		/* no parent is found */ 
		i -> TS = 0; 
 
		/* process neighbors */ 
		for (a0=i->first; a0; a0=a0->next) 
		{ 
			j = a0 -> head; 
			if (j->is_sink && (a=j->parent)) 
			{ 
				if (a0->r_cap) set_active(j); 
				if (a!=TERMINAL && a!=ORPHAN && a->head==i) 
				{ 
					/* add j to the adoption list */ 
					j -> parent = ORPHAN; 
					np = nodeptr_block -> New(); 
					np -> ptr = j; 
					if (orphan_last) orphan_last -> next = np; 
					else             orphan_first        = np; 
					orphan_last = np; 
					np -> next = NULL; 
				} 
			} 
		} 
	} 
} 
 
/***********************************************************************/ 
 
Graph::flowtype Graph::maxflow() 
{ 
	node *i, *j, *current_node = NULL; 
	arc *a; 
	nodeptr *np, *np_next; 
 
	maxflow_init(); 
	nodeptr_block = new DBlock(NODEPTR_BLOCK_SIZE, error_function); 
 
	while ( 1 ) 
	{ 
		if (i=current_node) 
		{ 
			i -> next = NULL; /* remove active flag */ 
			if (!i->parent) i = NULL; 
		} 
		if (!i) 
		{ 
			if (!(i = next_active())) break; 
		} 
 
		/* growth */ 
		if (!i->is_sink) 
		{ 
			/* grow source tree */ 
			for (a=i->first; a; a=a->next) 
			if (a->r_cap) 
			{ 
				j = a -> head; 
				if (!j->parent) 
				{ 
					j -> is_sink = 0; 
					j -> parent = a -> sister; 
					j -> TS = i -> TS; 
					j -> DIST = i -> DIST + 1; 
					set_active(j); 
				} 
				else if (j->is_sink) break; 
				else if (j->TS <= i->TS && 
				         j->DIST > i->DIST) 
				{ 
					/* heuristic - trying to make the distance from j to the source shorter */ 
					j -> parent = a -> sister; 
					j -> TS = i -> TS; 
					j -> DIST = i -> DIST + 1; 
				} 
			} 
		} 
		else 
		{ 
			/* grow sink tree */ 
			for (a=i->first; a; a=a->next) 
			if (a->sister->r_cap) 
			{ 
				j = a -> head; 
				if (!j->parent) 
				{ 
					j -> is_sink = 1; 
					j -> parent = a -> sister; 
					j -> TS = i -> TS; 
					j -> DIST = i -> DIST + 1; 
					set_active(j); 
				} 
				else if (!j->is_sink) { a = a -> sister; break; } 
				else if (j->TS <= i->TS && 
				         j->DIST > i->DIST) 
				{ 
					/* heuristic - trying to make the distance from j to the sink shorter */ 
					j -> parent = a -> sister; 
					j -> TS = i -> TS; 
					j -> DIST = i -> DIST + 1; 
				} 
			} 
		} 
 
		TIME ++; 
 
		if (a) 
		{ 
			i -> next = i; /* set active flag */ 
			current_node = i; 
 
			/* augmentation */ 
			augment(a); 
			/* augmentation end */ 
 
			/* adoption */ 
			while (np=orphan_first) 
			{ 
				np_next = np -> next; 
				np -> next = NULL; 
 
				while (np=orphan_first) 
				{ 
					orphan_first = np -> next; 
					i = np -> ptr; 
					nodeptr_block -> Delete(np); 
					if (!orphan_first) orphan_last = NULL; 
					if (i->is_sink) process_sink_orphan(i); 
					else            process_source_orphan(i); 
				} 
 
				orphan_first = np_next; 
			} 
			/* adoption end */ 
		} 
		else current_node = NULL; 
	} 
 
	delete nodeptr_block; 
 
	return flow; 
} 
 
/***********************************************************************/ 
 
Graph::termtype Graph::what_segment(node_id i) 
{ 
	if (((node*)i)->parent && !((node*)i)->is_sink) return SOURCE; 
	return SINK; 
}