BZOJ1143: 祭祀 題解

這是一道結論題
題目抽象一下就是要在一個DAG上求一個最大點集,使得兩兩不可達
上網搜了一下,這個東西叫做最長反鏈
根據Dilworth定理,最長反鏈=最小鏈覆蓋
最小鏈覆蓋可以這樣搞:我們先把圖的傳遞閉包求一下,這個可以用floyd,然後建一個二分圖,如果a–>b有邊,就從左邊的a向右邊的b連一條邊
求一個最大匹配,然後用n減一下就是答案了
可以這樣理解:剛開始我有n條鏈,每條鏈都是一個單點,然後我每選中一個匹配就相當於合併了兩條鏈

#include <cstdio>
#include <iostream>
#include <cstring>
#include <string>
#include <cstdlib>
#include <utility>
#include <cctype>
#include <algorithm>
#include <bitset>
#include <set>
#include <map>
#include <vector>
#include <queue>
#include <deque>
#include <stack>
#include <cmath>
#define LL long long
#define LB long double
#define x first
#define y second
#define Pair pair<int,int>
#define pb push_back
#define pf push_front
#define mp make_pair
#define LOWBIT(x) x & (-x)
using namespace std;

const int MOD=1e9+9;
const LL LINF=2e16;
const int INF=2e9;
const int magic=348;
const double eps=1e-10;
const double pi=3.14159265;

inline int getint()
{
    char ch;int res;bool f;
    while (!isdigit(ch=getchar()) && ch!='-') {}
    if (ch=='-') f=false,res=0; else f=true,res=ch-'0';
    while (isdigit(ch=getchar())) res=res*10+ch-'0';
    return f?res:-res;
}

int n,e;
int ga[148][148];

inline void Floyd()
{
    int i,j,k;
    for (k=1;k<=n;k++)
        for (i=1;i<=n;i++)
            for (j=1;j<=n;j++)
                if (i!=j && i!=k && k!=j && ga[i][k] && ga[k][j]) ga[i][j]=1;
}

int head[1048],cur[1048],to[100048],nxt[100048],f[100048],tot=1,t;
inline void addedge(int s,int t,int cap)
{
    to[++tot]=t;nxt[tot]=head[s];head[s]=tot;f[tot]=cap;
    to[++tot]=s;nxt[tot]=head[t];head[t]=tot;f[tot]=0;
}

int depth[1048],q[1048],Head,Tail;
inline bool bfs()
{
    int i,x,y;
    for (i=0;i<=t;i++) depth[i]=-1;
    depth[0]=0;Head=Tail=1;q[1]=0;
    while (Head<=Tail)
    {
        x=q[Head++];
        for (i=head[x];i;i=nxt[i])
        {
            y=to[i];
            if (depth[y]==-1 && f[i])
            {
                depth[y]=depth[x]+1;
                q[++Tail]=y;
            }
        }
    }
    if (depth[t]==-1) return false; else return true;
}

inline int dfs(int x,int maxf)
{
    if (x==t) return maxf;
    int y,minf,now,ans=0;
    for (int &i=cur[x];i;i=nxt[i])
    {
        y=to[i];
        if (depth[y]==depth[x]+1 && f[i])
        {
            minf=min(maxf-ans,f[i]);
            now=dfs(y,minf);
            f[i]-=now;f[i^1]+=now;ans+=now;
        }
    }
    if (!ans) depth[x]=0;
    return ans;
}

int main ()
{
    int i,j,x,y;n=getint();e=getint();
    for (i=1;i<=e;i++)
    {
        x=getint();y=getint();
        ga[x][y]=1;
    }
    Floyd();t=n*2+1;
    for (i=1;i<=n;i++)
        for (j=1;j<=n;j++)
            if (ga[i][j]) addedge(i,n+j,INF);
    for (i=1;i<=n;i++) addedge(0,i,1),addedge(n+i,t,1);
    int ans=0;
    while (bfs())
    {
        for (i=0;i<=t;i++) cur[i]=head[i];
        ans+=dfs(0,2e9);
    }
    printf("%d\n",n-ans);
    return 0;
}
發佈了182 篇原創文章 · 獲贊 40 · 訪問量 4萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章