maxflow.c
上传用户:gzelex
上传日期:2007-01-07
资源大小:707k
文件大小:1k
开发平台:

MultiPlatform

  1. #include <LEDA/graph.h>
  2. #include <LEDA/graph_alg.h>
  3. main(int argc, char** argv)
  4. {
  5. graph G;
  6. cmdline_graph(G,argc,argv);
  7. edge_array<int>  cap(G,0);
  8. edge_array<int>  cost(G,0);
  9. edge_array<int>  flow(G,0);
  10. edge_array<double> cap1(G,0);
  11. edge_array<double> cost1(G,0);
  12. edge_array<double> flow1(G,0);
  13. edge e;
  14. forall_edges(e,G) cap1[e] = cap[e] = rand_int(1,1000);
  15. forall_edges(e,G) cost1[e] = cost[e] = rand_int(-1000,1000);
  16. node s = G.first_node();
  17. node t = G.last_node();
  18. float T = used_time();
  19. cout << "MAX_FLOW<int>             " << flush;
  20. int f = MAX_FLOW(G,s,t,cap,flow) ;
  21. cout << string("time: %6.2f sec  f = %d",used_time(T),f) << endl;
  22. cout << "MAX_FLOW<double>          " << flush;
  23. double f1 = MAX_FLOW(G,s,t,cap1,flow1);
  24. cout << string("time: %6.2f sec  f = %.2f",used_time(T),f1) << endl;
  25. cout << "MIN_COST_MAX_FLOW<int>    " << flush;
  26. f = MIN_COST_MAX_FLOW(G,s,t,cap,cost,flow) ;
  27. int c = 0;
  28. forall_edges(e,G) c += cost[e]*flow[e];
  29. cout << string("time: %6.2f sec  f = %d    c = %d",used_time(T),f,c) << endl;
  30. return 0;
  31. }