1. 程式人生 > >P1402 酒店之王 最大流

P1402 酒店之王 最大流

math urn ini 愛的 htm 喜歡 define get 正整數

\(\color{#0066ff}{ 題目描述 }\)

XX酒店的老板想成為酒店之王,本著這種希望,第一步要將酒店變得人性化。由於很多來住店的旅客有自己喜好的房間色調、陽光等,也有自己所愛的菜,但是該酒店只有p間房間,一天只有固定的q道不同的菜。

有一天來了n個客人,每個客人說出了自己喜歡哪些房間,喜歡哪道菜。但是很不幸,可能做不到讓所有顧客滿意(滿意的條件是住進喜歡的房間,吃到喜歡的菜)。

這裏要怎麽分配,能使最多顧客滿意呢?

$\color{#0066ff}{ 輸入格式 } $

第一行給出三個正整數表示n,p,q(<=100)。

之後n行,每行p個數包含0或1,第i個數表示喜不喜歡第i個房間(1表示喜歡,0表示不喜歡)。

之後n行,每行q個數,表示喜不喜歡第i道菜。

\(\color{#0066ff}{輸出格式}\)

最大的顧客滿意數。

\(\color{#0066ff}{輸入樣例}\)

2 2 2
1 0
1 0
1 1
1 1

\(\color{#0066ff}{輸出樣例}\)

1

\(\color{#0066ff}{數據範圍與提示}\)

1 <= f <= 100, 1 <= d <= 100, 1 <= n <= 100

\(\color{#0066ff}{ 題解 }\)

題意類似於P2891 [USACO07OPEN]吃飯Dining

#include<bits/stdc++.h>
#define LL long long
LL in() {
    char ch; LL x = 0, f = 1;
    while(!isdigit(ch = getchar()))(ch == '-') && (f = -f);
    for(x = ch ^ 48; isdigit(ch = getchar()); x = (x << 1) + (x << 3) + (ch ^ 48));
    return x * f;
}
const int maxn = 1e4;
struct node {
    int to, dis;
    node *nxt, *rev;
    node(int to = 0, int dis = 0, node *nxt = NULL, node *rev = NULL)
        : to(to), dis(dis), nxt(nxt), rev(rev) {}
    void *operator new(size_t) {
        static node *S = NULL, *T = NULL;
        return (S == T) && (T = (S = new node[1024]) + 1024), S++;
    }
}*head[maxn], *cur[maxn];
int dep[maxn];
int n, s, t, na, nb;
void add(int from, int to, int dis) {
    head[from] = new node(to, dis, head[from], NULL);
}
void link(int from, int to, int dis) {
    add(from, to, dis), add(to, from, 0);
    (head[from]->rev = head[to])->rev = head[from];
}
bool bfs() {
    for(int i = s; i <= t; i++) dep[i] = 0, cur[i] = head[i];
    std::queue<int> q;
    q.push(s);
    dep[s] = 1;
    while(!q.empty()) {
        int tp = q.front(); q.pop();
        for(node *i = head[tp]; i; i = i->nxt) 
            if(!dep[i->to] && i->dis)
                dep[i->to] = dep[tp] + 1, q.push(i->to);
    }
    return dep[t];
}
int dfs(int x, int change) {
    if(x == t || !change) return change;
    int flow = 0, ls;
    for(node *i = cur[x]; i; i = i->nxt) {
        cur[x] = i;
        if(dep[i->to] == dep[x] + 1 && (ls = dfs(i->to, std::min(change, i->dis)))) {
            change -= ls;
            flow += ls;
            i->dis -= ls;
            i->rev->dis += ls;
            if(!change) break;
        }
    }
    return flow;
}
int dinic() {
    int flow = 0;
    while(bfs()) flow += dfs(s, 0x7fffffff);
    return flow;
}
int main() {
    n = in(), na = in(), nb = in();
    s = 0, t = n + n + na + nb + 1;
    for(int i = 1; i <= na; i++) link(s, i, 1);
    for(int i = 1; i <= nb; i++) link(n + na + n + i, t, 1);
    for(int i = 1; i <= n; i++) link(na + i, na + n + i, 1);
    for(int i = 1; i <= n; i++) 
        for(int j = 1; j <= na; j++) 
            if(in()) link(j, na + i, 1);
    for(int i = 1; i <= n; i++)
        for(int j = 1; j <= nb; j++)
            if(in()) link(na + n + i, na + n + n + j, 1);
    printf("%d\n", dinic());
    return 0;
}

P1402 酒店之王 最大流