HDU 3592 World Exhibition 【差分约束】

本文探讨了一种排队论中的特殊问题,即考虑了人员之间的喜好及厌恶关系所带来的距离约束,目标是在满足所有约束条件下计算队列中首尾两人最大可能的距离。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

World Exhibition

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1950    Accepted Submission(s): 968


Problem Description
Nowadays, many people want to go to Shanghai to visit the World Exhibition. So there are always a lot of people who are standing along a straight line waiting for entering. Assume that there are N (2 <= N <= 1,000) people numbered 1..N who are standing in the same order as they are numbered. It is possible that two or more person line up at exactly the same location in the condition that those visit it in a group.

There is something interesting. Some like each other and want to be within a certain distance of each other in line. Some really dislike each other and want to be separated by at least a certain distance. A list of X (1 <= X <= 10,000) constraints describes which person like each other and the maximum distance by which they may be separated; a subsequent list of Y constraints (1 <= Y <= 10,000) tells which person dislike each other and the minimum distance by which they must be separated.

Your job is to compute, if possible, the maximum possible distance between person 1 and person N that satisfies the distance constraints.
 

Input
First line: An integer T represents the case of test.

The next line: Three space-separated integers: N, X, and Y.

The next X lines: Each line contains three space-separated positive integers: A, B, and C, with 1 <= A < B <= N. Person A and B must be at most C (1 <= C <= 1,000,000) apart.

The next Y lines: Each line contains three space-separated positive integers: A, B, and C, with 1 <= A < B <= C. Person A and B must be at least C (1 <= C <= 1,000,000) apart.
 

Output
For each line: A single integer. If no line-up is possible, output -1. If person 1 and N can be arbitrarily far apart, output -2. Otherwise output the greatest possible distance between person 1 and N.
 

Sample Input
1 4 2 1 1 3 8 2 4 15 2 3 4
 

Sample Output
19
#include<bits/stdc++.h>
using namespace std;
#define mms(x, y) memset(x, y, sizeof x)
const int MAX = 1e5 + 7;
const int INF = 0x3f3f3f3f;
struct edge
{
    int v, d, next;
    edge(int v, int d, int n) : v(v), d(d), next(n) {}
    edge() {}
} V[MAX];
int vis[MAX], head[MAX], dis[MAX], times[MAX];
int n, g, b, num;
queue <int> q;
void init()
{
    num = 0;
    mms(vis, 0);
    mms(head, -1);
    mms(times, 0);
    fill(dis + 1, dis + 1 + n, INF);
    while(!q.empty())
        q.pop();
}
void add(int u, int v, int d)
{
    V[num] = edge(v, d, head[u]);
    head[u] = num++;
}
void spfa(int s)
{
    //cout << "111" << endl;
    dis[s] = 0;
    q.push(s);
    while(!q.empty())
    {
        int x = q.front();
        times[x]++;
        q.pop();
        if(times[x] > n)
        {
            puts("-1");
            return;
        }
        vis[x] = 0;
        for(int i = head[x]; i != -1; i = V[i].next)
        {
            int t = V[i].v;
            if(dis[t] > dis[x] + V[i].d)
            {
                dis[t] = dis[x] + V[i].d;
                if(!vis[t])
                {
                    vis[t] = 1;
                    q.push(t);
                }
            }
        }
    }
    if(dis[n] == INF)
    {
        puts("-2");
        return;
    }
    printf("%d\n", dis[n]);
    return;
}
int main()
{
    int N;
    scanf("%d", &N);
    while(N--)
    {
        scanf("%d%d%d", &n, &g, &b);
        init();
        for(int i = 0, x, y, z; i < g; i++)
        {
            scanf("%d%d%d", &x, &y, &z);
            add(x, y, z);
        }
        for(int i = 0, x, y, z; i < b; i++)
        {
            scanf("%d%d%d", &x, &y, &z);
            add(y, x, -z);
        }
        for(int i = 1; i < n; i++)
            add(i + 1, i, 0);
        spfa(1);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值