UVa 1161 Objective: Berlin (最大流)

题意:给定一些航班,每个航班有人数,和起始终止时间,每次转机要花半小时,问限制时间内最多能有多少人从起始城市到终点城市。

析:差不多是裸板网络流的最大流问题,把每个航班都拆成两个点,这两个点之间连接一条流量为这个航班的容量,然后再暴力去查看能不能连接,如果能,

那么就连接一条容量无限的边,然后在源点和汇点加一个无限的容量边。

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <cmath>
#include <stack>
#include <unordered_map>
//#include <tr1/unordered_map>
#define freopenr freopen("in.txt", "r", stdin)
#define freopenw freopen("out.txt", "w", stdout)
using namespace std;
//using namespace std :: tr1;

typedef long long LL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const double inf = 0x3f3f3f3f3f3f;
const LL LNF = 0x3f3f3f3f3f3f;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int maxn = 10005;
const LL mod = 10000000000007;
const int N = 1e6 + 5;
const int dr[] = {-1, 0, 1, 0, 1, 1, -1, -1};
const int dc[] = {0, 1, 0, -1, 1, -1, 1, -1};
const int hr[]= {-2, -2, -1, -1, 1, 1, 2, 2};
const int hc[]= {-1, 1, -2, 2, -2, 2, -1, 1};
const char *Hex[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
inline LL gcd(LL a, LL b){  return b == 0 ? a : gcd(b, a%b); }
int n, m;
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
inline int Min(int a, int b){ return a < b ? a : b; }
inline int Max(int a, int b){ return a > b ? a : b; }
inline LL Min(LL a, LL b){ return a < b ? a : b; }
inline LL Max(LL a, LL b){ return a > b ? a : b; }
inline bool is_in(int r, int c){
    return r >= 0 && r < n && c >= 0 && c < m;
}
const int maxm = 1000005;

struct Edge{
    int v, f, next;
};
int src, sink;
int g[maxn];
int nume;
Edge e[maxm];
map<string, int> mp;
int cnt;

int getid(const string &s){
    return mp.count(s) ? mp[s] : mp[s] = cnt++;
}

void add(int u, int v, int c){
    e[++nume].v = v;
    e[nume].f = c;
    e[nume].next = g[u];
    g[u] = nume;
    e[++nume].v = u;
    e[nume].f = 0;
    e[nume].next = g[v];
    g[v] = nume;
}

queue<int> q;
bool vis[maxn + 10];
int d[maxn + 10];

void bfs(){
    memset(d, 0, sizeof d);
    while(!q.empty())  q.pop();
    vis[src] = true;
    q.push(src);
    while(!q.empty()){
        int u = q.front();  q.pop();
        for(int i = g[u]; i; i = e[i].next)
            if(e[i].f && !vis[e[i].v]){
                q.push(e[i].v);
                d[e[i].v] = d[u] + 1;
                vis[e[i].v] = true;
            }
    }
}

int dfs(int u, int del){
    if(u == sink)  return del;
    int ans = 0;
    for(int i = g[u]; i && del; i = e[i].next)
        if(e[i].f && d[e[i].v] == d[u] + 1){
            int dd = dfs(e[i].v, Min(e[i].f, del));
            e[i].f -= dd;
            e[i^1].f += dd;
            del -= dd;
            ans += dd;
        }
    return ans;
}

int maxflow(){
    int ans = 0;
    while(true){
        memset(vis, 0, sizeof vis);
        bfs();
        if(!vis[sink])  return ans;
        ans += dfs(src, INF);
    }
}
char s[105], t[105];
struct node{
    int u, v, c, start, last;
};
node a[maxm];

int cal(char *s){
    int ans = 0;
    ans += ((s[0] - ‘0‘) * 10 + s[1] - ‘0‘) * 60;
    ans += ((s[2] - ‘0‘) * 10 + s[3] - ‘0‘);
    return ans;
}

bool judge(const node &lhs, const node &rhs){
    return lhs.v == rhs.u && lhs.last + 30 <= rhs.start;
}

int main(){
    while(scanf("%d", &n) == 1){
        scanf("%s", s);
        cnt = 0;
        mp.clear();
        int ss = getid(s);
        scanf("%s", t);
        int tt = getid(t);
        memset(g, 0, sizeof g);
        nume = 1;
        int time;
        scanf("%s", s);
        time = cal(s);
        scanf("%d", &m);
        char start[10], last[10];
        src = 0; sink = 2 * m + 1;
        for(int i = 1; i <= m; ++i){
            scanf("%s %s %d %s %s", s, t, &a[i].c, start, last);
            a[i].u = getid(s);
            a[i].v = getid(t);
            a[i].start = cal(start);
            a[i].last = cal(last);
        }
        for(int i = 1; i <= m; ++i){
            if(a[i].u == ss)  add(0, i, INF);
            if(a[i].v == tt && a[i].last <= time)  add(i+m, 2*m+1, INF);
            add(i, i+m, a[i].c);
            for(int j = 1; j <= m; ++j)
                if(i != j && judge(a[i], a[j]))  add(i+m, j, INF);
        }
        printf("%d\n", maxflow());
    }
    return 0;
}
时间: 2024-10-14 05:20:39

UVa 1161 Objective: Berlin (最大流)的相关文章

uva 1161 Objective: Berlin (最大流)

uva 1161 Objective: Berlin 题目大意:你要从A地到B地去,并且最晚要在lt之前到达.现在给你m个航班信息,信息包括:起始地点,降落地点,载客上限,起飞时间,降落时间.中途转机要花费半小时的时间.问在lt之前,可以从A地到达B地的最多的游客数量. 解题思路:以航班为节点进行建图.设置超级源点,连向所有起点为A地的航班,容量为INF:设置超级汇点,使所有降落地点为B点且降落时间在lt之前的航班连向超级汇点.每个航班都要拆成两个节点,中间的边容量为该航班的载客上限.如果i航班

UVA 1161 - Objective: Berlin(网络流)

UVA 1161 - Objective: Berlin 题目链接 题意:给定一些航班,每个航班有人数,和起始终止时间,每次转机要花半小时,问限制时间内最多能有多少人从起始城市到终点城市 思路:以航班为结点建图,航班有容量限制所以进行拆点,然后两个航班如果终点和起点对上,并且时间满足就可以建边,然后源点连向起点为起始的航班,终点为终点的航班连向汇点(要在时间不超过时限的情况下),建好图跑一下最大流就可以了 代码: #include <cstdio> #include <cstring&g

UVa1161 Objective: Berlin(最大流)

题目 https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=3602 Description The administration of a well-known football team has made a study about the lack of support ininternational away games. This st

UVA 820 --- POJ 1273 最大流

找了好久这两个的区别...UVA820 WA了 好多次.不过以后就做模板了,可以求任意两点之间的最大流. UVA 是无向图,因此可能有重边,POJ 1273是有向图,而且是单源点求最大流,因此改模板的时候注意一下. 而且我居然犯了更愚蠢的错误,以为重边的时候需要选最大的,正解应该是累加.... 1 #include<stdio.h> 2 #include<queue> 3 #include<string.h> 4 #define INF 999999 5 using n

Risk UVA - 12264 拆点法+最大流+二分

/** 题目:Risk UVA - 12264 链接:https://vjudge.net/problem/UVA-12264 题意:给n个点的无权无向图(n<=100),每个点有一个非负数ai. 若ai==0则此点归敌方所有,若ai>0则此点归你且上面有ai个属于你的士兵. 保证至少有一个属于你的点与敌方的点相邻.你可以让你的每个士兵最多移动一次 ,每次可以待在原地或者去到相邻的属于你的领地,但每个点至少要留1各士兵, 使得最薄弱的关口尽量坚固.关口是指与敌方点相邻的点,薄弱与坚固分别指兵少

UVA 10779 Collectors Problem[最大流]

from:neopenx 题目大意:Bob有一些贴纸,他可以和别人交换,他可以把自己独有的贴纸拿出去,也可以把重复的贴纸拿出去(有时候把独有的贴纸而不是重复的贴纸拿出去能换到更多贴纸). Bob的朋友也有一些贴纸,但是他们只会拿自己重复的贴纸和Bob换,而且换的是自己没有的贴纸. 求Bob最后最多能有多少种贴纸. 解题思路: 题目意思很明确了.就算把重复的贴纸拿出去也不一定最优,贪心就不用尝试了. 全局资源调配得使用网络流模型. 建图方式: ①S点(看作是Bob)->所有物品:连一条边,cap是

uva 1658(最小费用最大流)

题意:一个带权有向图,求起点到终点的两条路径权值之和最小,且两条路径没有公共点(除起点,终点): 分析:拆点法,将u拆成u和u',u-u'容量为1,费用为0,这样就能保证每个点只用一次,起点s-s'容量为2,终点t-t'容量为2保证最大流会求出两条路径,若输入u-v,权为c,则增加边u'-v,容量为1,费用为c. #include <cstdio> #include <iostream> #include <sstream> #include <cmath>

UVA 11248 Frequency Hopping (最大流+最小割)

题意:与正常的网络流一样,不过给定的第一行的最后一个数C的意思是能能否在给定的图里求出修改某一条边或者不修改某一条边是的这个图的流变成C,如果没修改就能有C,那么输出possible,通过修改能得到C输出possible+能修改的边集合,否则输出no possible 思路:(自己的是死暴力方法,直接爆了,想了很多法子都来不起,最后参照白书的思路来起了)可以先求出最大流,然后求出最小割里的弧,依次修改最小割里的弧,看能求出的最大流是否大于C PS:不优化的话很容易超时,第一个优化是把第一次求得得

uva 563 Crimewave(最大流)

Nieuw Knollendam is a very modern town. This becomes clear already when looking at the layout of its map, which is just a rectangular grid of streets and avenues. Being an important trade centre, Nieuw Knollendam also has a lot of banks. Almost on ev