Saturday, September 21, 2019

[Codemarshal] H. The Great Kind King of Tanguzi

Author            : Dipu Kumar Mohanto 
                    CSE, Batch - 6
                    BRUR.
Problem Statement : H. The Great Kind King of Tanguzi
                    BAPS-BUBT NATIONAL PROGRAMMING CAMP, 2016 ONLINE SELECTION CONTEST
Source            : Codemarshal
Category          : Graph Theory, Strongly Connected Components
Algorithm         : SCC
Verdict           : Accepted

  1. #include "bits/stdc++.h"  
  2.   
  3. using namespace std;  
  4.   
  5. static const int maxn = 1e5 + 5;  
  6.   
  7. vector < vector <int> > graph;  
  8. vector < vector <int> > rgraph;  
  9. vector < vector <int> > dag;  
  10.   
  11. int finishTime[maxn];  
  12. int dfsTime;  
  13. bool vis[maxn];  
  14. bool vis1[maxn];  
  15.   
  16. void dfs(int u)  
  17. {  
  18.       vis[u] = 1;  
  19.       for (int v : graph[u])  
  20.       {  
  21.             if (vis[v]) continue;  
  22.             dfs(v);  
  23.       }  
  24.       finishTime[u] = ++dfsTime;  
  25. }  
  26.   
  27. int compo;  
  28. int compo_num[maxn];  
  29. int compo_sze[maxn];  
  30.   
  31. void dfs_scc(int u)  
  32. {  
  33.       vis1[u] = 1;  
  34.       compo_num[u] = compo;  
  35.       compo_sze[compo]++;  
  36.       for (int v : rgraph[u])  
  37.       {  
  38.             if (vis1[v]) continue;  
  39.             dfs_scc(v);  
  40.       }  
  41. }  
  42.   
  43. int dp[maxn];  
  44. bool memoize[maxn];  
  45.   
  46. int solve(int u)  
  47. {  
  48.       int &ret = dp[u];  
  49.       bool &mem = memoize[u];  
  50.       if (mem) return ret;  
  51.       mem = 1;  
  52.       int sum = compo_sze[u];  
  53.       for (int v : dag[u]) sum += solve(v);  
  54.       return ret = sum;  
  55. }  
  56.   
  57. signed main()  
  58. {  
  59.       ios_base::sync_with_stdio(false);  
  60.       cin.tie(nullptr);  
  61.       cout.tie(nullptr);  
  62.   
  63. //      #ifndef ONLINE_JUDGE  
  64. //            freopen("in.txt", "r", stdin);  
  65. //      #endif // ONLINE_JUDGE  
  66.   
  67.       int tc;  
  68.       cin >> tc;  
  69.       for (int tcase = 1; tcase <= tc; tcase++)  
  70.       {  
  71.             int tnode, tedge;  
  72.             cin >> tnode >> tedge;  
  73.             graph.resize(tnode + 1);  
  74.             rgraph.resize(tnode + 1);  
  75.             vector < pair <intint> > Edge;  
  76.             for (int e = 1; e <= tedge; e++)  
  77.             {  
  78.                   int u, v;  
  79.                   cin >> u >> v;  
  80.                   graph[u].push_back(v);  
  81.                   rgraph[v].push_back(u);  
  82.                   Edge.push_back({u, v});  
  83.             }  
  84.             dfsTime = 0;  
  85.             memset(vis, 0, sizeof vis);  
  86.             for (int i = 1; i <= tnode; i++)  
  87.             {  
  88.                   if (vis[i]) continue;  
  89.                   dfs(i);  
  90.             }  
  91.             vector < pair <intint> > vec;  
  92.             for (int i = 1; i <= tnode; i++) vec.push_back({finishTime[i], i});  
  93.             sort(vec.begin(), vec.end());  
  94.             reverse(vec.begin(), vec.end());  
  95.             memset(vis1, 0, sizeof vis1);  
  96.             memset(compo_num, 0, sizeof compo_num);  
  97.             memset(compo_sze, 0, sizeof compo_sze);  
  98.             compo = 0;  
  99.             for (int i = 0; i < vec.size(); i++)  
  100.             {  
  101.                   int u = vec[i].second;  
  102.                   if (vis1[u]) continue;  
  103.                   ++compo;  
  104.                   dfs_scc(u);  
  105.             }  
  106.             dag.resize(compo + 1);  
  107.             for (int i = 0; i < tedge; i++)  
  108.             {  
  109.                   int u = compo_num[ Edge[i].first ];  
  110.                   int v = compo_num[ Edge[i].second ];  
  111.                   if (u == v) continue;  
  112.                   dag[u].push_back(v);  
  113.             }  
  114.             memset(memoize, 0, sizeof memoize);  
  115.             for (int i = 1; i <= compo; i++) dp[i] = solve(i);  
  116.             long long ans = 1;  
  117.             for (int i = 1; i <= tnode; i++)  
  118.             {  
  119.                   int sze = dp[ compo_num[i] ];  
  120.                   ans = (1LL * sze * ans) % 1000000007;  
  121.             }  
  122.             cout << "Case " << tcase << ": " << ans << '\n';  
  123.   
  124.             graph.clear();  
  125.             rgraph.clear();  
  126.             dag.clear();  
  127.       }  
  128. }  

No comments:

Post a Comment

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