HDU3861-The King's problem (directed graph strongly connected contraction point + minimum path overwrite)

Source: Internet
Author: User

Question Link


A directed graph allows you to divide regions according to rules and requires the least number of regions.
The rules are as follows:
1. If edges u to V and edges V to u, u and v must be divided into the same region.
2. At least one of the two points in a region can reach the other.
3. A point can only be divided into one region.

Train of Thought: According to rule 1, we can see that the strongly connected component must be scaled down, And the scaled down point will become a weak connected graph. According to rules 2 and 3, the minimum path overwrite of the graph is required.

Code:

#include <iostream>#include <cstdio>#include <cstring>#include <vector>#include <algorithm>using namespace std;const int MAXN = 20010;const int MAXM = 100010;struct Edge{    int to, next;}edge[MAXM];int head[MAXN], tot;int Low[MAXN], DFN[MAXN], Stack[MAXN], Belong[MAXN];int Index, top;int scc;bool Instack[MAXN];int num[MAXN];int n, m;void init() {    tot = 0;    memset(head, -1, sizeof(head));}void addedge(int u, int v) {    edge[tot].to = v;    edge[tot].next = head[u];    head[u] = tot++;}void Tarjan(int u) {    int v;    Low[u] = DFN[u] = ++Index;    Stack[top++] = u;    Instack[u] = true;    for (int i = head[u]; i != -1; i = edge[i].next) {        v = edge[i].to;                 if (!DFN[v]) {            Tarjan(v);             if (Low[u] > Low[v]) Low[u] = Low[v];        }         else if (Instack[v] && Low[u] > DFN[v])             Low[u] = DFN[v];    }    if (Low[u] == DFN[u]) {        scc++;         do {             v = Stack[--top];             Instack[v] = false;            Belong[v] = scc;            num[scc]++;        } while (v != u);     }}void solve() {    memset(Low, 0, sizeof(Low));    memset(DFN, 0, sizeof(DFN));    memset(num, 0, sizeof(num));    memset(Stack, 0, sizeof(Stack));    memset(Instack, false, sizeof(Instack));    Index = scc = top = 0;    for (int i = 1; i <= n; i++)         if (!DFN[i])            Tarjan(i);}vector<int> g[MAXN];int linker[MAXN], used[MAXN];bool dfs(int u) {    for (int i = 0; i < g[u].size(); i++) {        int v = g[u][i];         if (!used[v]) {            used[v] = 1;             if (linker[v] == -1 || dfs(linker[v])) {                linker[v] = u;                 return true;            }        }     }    return false;}int hungary() {    int res = 0;    memset(linker, -1, sizeof(linker));    for (int i = 1; i <= scc; i++) {        memset(used, 0, sizeof(used));         if (dfs(i)) res++;     }    return scc - res;}int main() {    int cas;    scanf("%d", &cas);    while (cas--) {        scanf("%d%d", &n, &m);                 init();        int u, v;        for (int i = 0; i < m; i++) {            scanf("%d%d", &u, &v);             addedge(u, v);         }        solve();         for (int i = 0; i <= scc; i++) g[i].clear();        for (int u = 1; u <= n; u++) {            for (int i = head[u]; i != -1; i = edge[i].next) {                int v = edge[i].to;                if (Belong[u] != Belong[v])                     g[Belong[u]].push_back(Belong[v]);            }          }        printf("%d\n", hungary());     }    return 0;}




HDU3861-The King's problem (directed graph strongly connected contraction point + minimum path overwrite)

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.