Tuesday, January 22, 2019

[UVa] 10806 - Dijkstra, Dijkstra.

Author            : Dipu Kumar Mohanto 
                    CSE, Batch - 6
                    BRUR.
Problem Statement : 10806 - Dijkstra, Dijkstra.
Source            : UVA Online Judge
Category          : Graph Theory
Algorithm         : Min Cost Max Flow
Verdict           : Accepted

  1. #include "bits/stdc++.h"  
  2.   
  3. using namespace std;  
  4.   
  5. #define FI              freopen("in.txt", "r", stdin)  
  6. #define FO              freopen("out.txt", "w", stdout)  
  7. #define FAST            ios_base::sync_with_stdio(false), cin.tie(NULL), cout.tie(NULL)  
  8.   
  9. #define FOR(i, n)       for (int i = 1; i <= n; i++)  
  10. #define For(i, n)       for (int i = 0; i < n; i++)  
  11. #define ROF(i, n)       for (int i = n; i >= 1; i--)  
  12. #define Rof(i, n)       for (int i = n-1; i >= 0; i--)  
  13. #define FORI(i, n)      for (auto i : n)  
  14. #define REP(i, a, b)    for (int i = a; i <= b; i++)  
  15.   
  16. #define ll              long long  
  17. #define ull             unsigned long long  
  18. #define vi              vector <int>  
  19. #define vl              vector <ll>  
  20. #define pii             pair <int, int>  
  21. #define pll             pair <ll, ll>  
  22. #define mk              make_pair  
  23. #define ff              first  
  24. #define ss              second  
  25. #define eb              emplace_back  
  26. #define em              emplace  
  27. #define pb              push_back  
  28. #define ppb             pop_back  
  29. #define All(a)          a.begin(), a.end()  
  30. #define memo(a, b)      memset(a, b, sizeof a)  
  31. #define Sort(a)         sort(All(a))  
  32. #define ED(a)           Sort(a), a.erase(unique(All(a)), a.end())  
  33. //#define rev(a)          reverse(All(a))  
  34. #define sz(a)           (int)a.size()  
  35. #define max3(a, b, c)   max(a, max(b, c))  
  36. #define min3(a, b, c)   min(a, min(b, c))  
  37. #define maxAll(a)       *max_element(All(a))  
  38. #define minAll(a)       *min_element(All(a))  
  39. #define allUpper(a)     transform(All(a), a.begin(), :: toupper)  
  40. #define allLower(a)     transform(All(a), a.begin(), :: tolower)  
  41. #define endl            '\n'  
  42. #define nl              puts("")  
  43. #define ub              upper_bound  
  44. #define lb              lower_bound  
  45. #define Exp             exp(1.0)  
  46. #define PIE             2*acos(0.0)  
  47. #define Sin(a)          sin(((a)*PIE)/180.0)  
  48. #define EPS             1e-9  
  49.   
  50. #include "ext/pb_ds/assoc_container.hpp"  
  51. #include "ext/pb_ds/tree_policy.hpp"  
  52. using namespace __gnu_pbds;  
  53.   
  54. template <typename T> using orderset = tree <T, null_type, less <T>, rb_tree_tag, tree_order_statistics_node_update>;  
  55.    
  56. #include "ext/rope"  
  57. using namespace __gnu_cxx;  
  58.   
  59. // rope <int> Rope;  
  60.   
  61. // int dr[] = {1, -1, 0, 0}; // 4 Direction  
  62. // int dc[] = {0, 0, 1, -1};  
  63. // int dr[] = {0, 0, 1, -1, 1, 1, -1, -1}; // 8 Direction  
  64. // int dc[] = {1, -1, 0, 0, 1, -1, 1, -1};  
  65. // int dr[] = {-1, 1, -2, -2, -1, 1, 2, 2}; // knight Moves  
  66. // int dc[] = {-2, -2, -1, 1, 2, 2, 1, -1};  
  67.   
  68. #define trace1(x)                           cerr << #x << ": " << x << endl;  
  69. #define trace2(x, y)                        cerr << #x << ": " << x << " | " << #y << ": " << y << endl;  
  70. #define trace3(x, y, z)                     cerr << #x << ": " << x << " | " << #y << ": " << y << " | " << #z << ": " << z << endl;  
  71. #define trace4(a, b, c, d)                  cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << endl;  
  72. #define trace5(a, b, c, d, e)               cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << endl;  
  73. #define trace6(a, b, c, d, e, f)            cerr << #a << ": " << a << " | " << #b << ": " << b << " | " << #c << ": " << c << " | " << #d << ": " << d << " | " << #e << ": " << e << " | " << #f << ": " << f << endl;  
  74.   
  75. inline int setbit(int mask, int pos)        { return mask |= (1 << pos); }  
  76. inline int resetbit(int mask, int pos)      { return mask &= ~(1 << pos); }  
  77. inline int togglebit(int mask, int pos)     { return mask ^= (1 << pos); }  
  78. inline bool checkbit(int mask, int pos)     { return (bool)(mask & (1 << pos)); }  
  79.   
  80. #define popcount(mask)                       __builtin_popcount(mask) // count set bit  
  81. #define popcountLL(mask)                     __builtin_popcountll(mask) // for long long  
  82.   
  83. inline int read()                           { int a; scanf("%d", &a); return a; }  
  84. inline ll readLL()                          { ll a; scanf("%lld", &a); return a; }  
  85. inline double readDD()                      { double a; scanf("%lf", &a); return a; }  
  86.   
  87. template <typename T> string toString(T num) { stringstream ss; ss << num; return ss.str(); }  
  88. int toInt(string s)                          { int num; istringstream iss(s); iss >> num; return num;  }  
  89. ll toLLong(string s)                         { ll num; istringstream iss(s); iss >> num; return num; }  
  90.   
  91. #define inf             1e17  
  92. #define mod             1000000007  
  93.   
  94. static const int maxn = 2e4 + 5;  
  95. static const int logn = 18;  
  96.   
  97.   
  98. //Works for negative costs, but does not work for negative cycles  
  99. //Complexity: O(min(E^2 *V log V, E logV * flow))  
  100.   
  101. struct edge  
  102. {  
  103.     int to, flow, cap, cost, rev;  
  104.     edge(int to = 0, int flow = 0, int cap = 0, int cost = 0, int rev = 0) :  
  105.           to(to), flow(flow), cap(cap), cost(cost), rev(rev) {}  
  106. };  
  107.   
  108. struct MinCostMaxFlow  
  109. {  
  110.     int nodes;  
  111.     vector <int> prio, curflow, prevedge, prevnode, q, pot;  
  112.     vector <bool> inqueue;  
  113.     vector< vector<edge> > graph;  
  114.   
  115.     MinCostMaxFlow() {}  
  116.   
  117.     MinCostMaxFlow(int n) :  
  118.           nodes(n), prio(n, 0), curflow(n, 0), prevedge(n, 0),  
  119.           prevnode(n, 0), q(n, 0), pot(n, 0), inqueue(n, 0), graph(n) {}  
  120.   
  121.     void addEdge(int source, int to, int capacity, int cost)  
  122.     {  
  123.         edge a = {to, 0, capacity, cost, (int)graph[to].size()};  
  124.         edge b = {source, 0, 0, -cost, (int)graph[source].size()};  
  125.         graph[source].push_back(a);  
  126.         graph[to].push_back(b);  
  127.     }  
  128.   
  129.     void bellman_ford(int source, vector<int> &dist)  
  130.     {  
  131.         fill(dist.begin(), dist.end(), INT_MAX);  
  132.         dist[source] = 0;  
  133.         int qt=0;  
  134.         q[qt++] = source;  
  135.         for(int qh = 0;(qh-qt) % nodes != 0; qh++)  
  136.         {  
  137.             int u = q[qh % nodes];  
  138.             inqueue[u] = false;  
  139.             for(auto &e : graph[u])  
  140.             {  
  141.                 if(e.flow >= e.cap) continue;  
  142.                 int v = e.to;  
  143.                 int newDist = dist[u] + e.cost;  
  144.                 if(dist[v] > newDist)  
  145.                 {  
  146.                     dist[v] = newDist;  
  147.                     if(!inqueue[v])  
  148.                     {  
  149.                         inqueue[v] = true;  
  150.                         q[qt++ % nodes] = v;  
  151.                     }  
  152.                 }  
  153.             }  
  154.         }  
  155.     }  
  156.   
  157.     pair<intint> minCostFlow(int source, int dest, int maxflow)  
  158.     {  
  159.         bellman_ford(source, pot);  
  160.         int flow = 0;  
  161.         int flow_cost = 0;  
  162.         while(flow < maxflow)  
  163.         {  
  164.             priority_queue< pair<intint>, vector< pair<intint> >, greater< pair<intint> > > q;  
  165.             q.push({0, source});  
  166.             fill(prio.begin(), prio.end(), INT_MAX);  
  167.             prio[source] = 0;  
  168.             curflow[source] = INT_MAX;  
  169.             while(!q.empty())  
  170.             {  
  171.                 int d = q.top().first;  
  172.                 int u = q.top().second;  
  173.                 q.pop();  
  174.                 if(d != prio[u]) continue;  
  175.                 for(int i = 0; i < graph[u].size(); i++)  
  176.                 {  
  177.                     edge &e=graph[u][i];  
  178.                     int v = e.to;  
  179.                     if(e.flow >= e.cap) continue;  
  180.                     int newPrio = prio[u] + e.cost + pot[u] - pot[v];  
  181.                     if(prio[v] > newPrio)  
  182.                     {  
  183.                         prio[v] = newPrio;  
  184.                         q.push({newPrio, v});  
  185.                         prevnode[v] = u;  
  186.                         prevedge[v] = i;  
  187.                         curflow[v] = min(curflow[u], e.cap - e.flow);  
  188.                     }  
  189.                 }  
  190.             }  
  191.             if(prio[dest] == INT_MAX) break;  
  192.             for(int i = 0;i < nodes; i++) pot[i] += prio[i];  
  193.             int df = min(curflow[dest], maxflow - flow);  
  194.             flow += df;  
  195.             for(int v = dest; v!= source; v = prevnode[v])  
  196.             {  
  197.                 edge &e = graph[ prevnode[v] ][ prevedge[v] ];  
  198.                 e.flow += df;  
  199.                 graph[v][e.rev].flow -= df;  
  200.                 flow_cost += df * e.cost;  
  201.             }  
  202.         }  
  203.         return {flow, flow_cost};  
  204.     }  
  205. };  
  206.   
  207. int main()  
  208. {  
  209.       int tnode, tedge;  
  210.       while (scanf("%d", &tnode) == 1)  
  211.      {  
  212.            if (tnode == 0) break;  
  213.            MinCostMaxFlow mcmf(tnode+2);  
  214.            tedge = read();  
  215.            FOR(e, tedge)  
  216.            {  
  217.                  int u = read();  
  218.                  int v = read();  
  219.                  int c = read();  
  220.                  mcmf.addEdge(u, v, 1, c);  
  221.                  mcmf.addEdge(v, u, 1, c);  
  222.             }  
  223.             int S = 0;  
  224.             int T = tnode + 1;  
  225.             mcmf.addEdge(S, 1, 2, 0);  
  226.             mcmf.addEdge(1, S, 2, 0);  
  227.             mcmf.addEdge(tnode, T, 2, 0);  
  228.             mcmf.addEdge(T, tnode, 2, 0);  
  229.             pii res = mcmf.minCostFlow(S, T, 2);  
  230.             if (res.first != 2) puts("Back to jail");  
  231.             else printf("%d\n", res.second);  
  232.     }  
  233. }  

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.