AC日记——货车运输 codevs

3287 货车运输

2013年NOIP全国联赛提高组

时间限制: 1 s

空间限制: 128000 KB

题目等级 : 钻石 Diamond

题解

查看运行结果

题目描述 Description

A 国有 n 座城市,编号从 1 到 n,城市之间有 m 条双向道路。每一条道路对车辆都有重量限制,简称限重。现在有 q 辆货车在运输货物,司机们想知道每辆车在不超过车辆限重的情况下,最多能运多重的货物。

输入描述 Input Description

第一行有两个用一个空格隔开的整数 n,m,表示 A 国有 n 座城市和 m 条道路。
接下来 m 行每行 3 个整数 x、y、z,每两个整数之间用一个空格隔开,表示从 x 号城市到 y 号城市有一条限重为 z 的道路。注意:x 不等于 y,两座城市之间可能有多条道路。
接下来一行有一个整数 q,表示有 q 辆货车需要运货。
接下来 q 行,每行两个整数 x、y,之间用一个空格隔开,表示一辆货车需要从 x 城市运输货物到 y 城市,注意:x 不等于 y。

输出描述 Output Description

输出共有 q 行,每行一个整数,表示对于每一辆货车,它的最大载重是多少。如果货车不能到达目的地,输出-1。

样例输入 Sample Input

4 3 
1 2 4 
2 3 3 
3 1 1 
3
1 3 
1 4 
1 3

样例输出 Sample Output

3
-1
3

数据范围及提示 Data Size & Hint

对于 30%的数据,0 < n < 1,000,0 < m < 10,000,0 < q < 1,000; 
对于 60%的数据,0 < n < 1,000,0 < m < 50,000,0 < q < 1,000; 
对于 100%的数据,0 < n < 10,000,0 < m < 50,000,0 < q < 30,000,0 ≤ z ≤ 100,000。

分类标签 Tags 点此展开

思路:

  最大生成树+lca

来,上代码:

#include<cstdio>
#include<algorithm>

using namespace std;

struct node {
    int from,to,dis,next;
};
struct node usee[60001];
struct node edge[20001];
int n,m,head[10001],num=0;
int f[10001],bnum=0,tail=0;
int cur=0,dfn[10001],tarjan_dfn=0;

int max(int a,int b){return a>b?a:b;}

int min(int a,int b){return a<b?a:b;}

void tarjan(int scre,int before)
{
    tarjan_dfn++;
    dfn[scre]=tarjan_dfn;
    for(int i=head[scre];i!=0;i=edge[i].next)
    {
        if(edge[i].to!=before)
        {
            tarjan(edge[i].to,scre);
        }
    }
}

int tarjan_lca(int minn,int maxn)
{
    int kop=minn,kol=maxn,kcc=1e18;
    while(dfn[kol]>dfn[minn])
    {
        for(int i=head[kol];i!=0;i=edge[i].next)
        {
            if(dfn[edge[i].to]<dfn[kol])
            {
                kol=edge[i].to;
                kcc=min(kcc,edge[i].dis);
                break;
            }
        }
    }
    while(dfn[kop]>dfn[kol])
    {
        for(int i=head[kop];i!=0;i=edge[i].next)
        {
            if(dfn[edge[i].to]<dfn[kop])
            {
                kop=edge[i].to;
                kcc=min(kcc,edge[i].dis);
                break;
            }
        }
    }
    return kcc;
}

int cmp(struct node a,struct node b){return a.dis>b.dis;}

void edge_add(int from,int to,int dis)
{
    num++;
    edge[num].to=to;
    edge[num].dis=dis;
    edge[num].from=from;
    edge[num].next=head[from];
    head[from]=num;
}

int find(int x)
{
    if(x==f[x]) return f[x];
    else return f[x]=find(f[x]);
}

int qread()
{
    int x=0;char ch=getchar();
    while(ch>‘9‘||ch<‘0‘) ch=getchar();
    while(ch<=‘9‘&&ch>=‘0‘){x=x*10+(int)(ch-‘0‘);ch=getchar();}
    return x;
}

int main()
{
    n=qread(),m=qread();
    for(int i=1;i<n;i++)
    {
        f[i]=i;
        bnum++;
        usee[bnum].from=i;
        usee[bnum].to=i+1;
        usee[bnum].dis=-1;
    }
    f[n]=n;
    int from,to,dis;
    for(int i=1;i<=m;i++)
    {
        from=qread(),to=qread(),dis=qread();
        bnum++;
        usee[bnum].to=to;
        usee[bnum].dis=dis;
        usee[bnum].from=from;
    }
    sort(usee+1,usee+bnum+1,cmp);
    int x,y;
    while(tail<n-1)
    {
        cur++;
        x=find(usee[cur].from),y=find(usee[cur].to);
        if(x!=y)
        {
            tail++;
            edge_add(usee[cur].from,usee[cur].to,usee[cur].dis);
            edge_add(usee[cur].to,usee[cur].from,usee[cur].dis);
            f[x]=y;
        }
    }
    tarjan(1,0);
    int q=qread();
    while(q--)
    {
        from=qread(),to=qread();
        dfn[from]<dfn[to]?printf("%d\n",tarjan_lca(from,to)):printf("%d\n",tarjan_lca(to,from));
    }
    return 0;
}
时间: 2024-12-17 02:53:46

AC日记——货车运输 codevs的相关文章

AC日记——约瑟夫问题 codevs 1282

1282 约瑟夫问题 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 大师 Master 题解 查看运行结果 题目描述 Description 有编号从1到N的N个小朋友在玩一种出圈的游戏.开始时N个小朋友围成一圈,编号为I+1的小朋友站在编号为I小朋友左边.编号为1的小朋友站在编号为N的小朋友左边.首先编号为1的小朋友开始报数,接着站在左边的小朋友顺序报数,直到数到某个数字M时就出圈.直到只剩下1个小朋友,则游戏完毕. 现在给定N,M,求N个小朋友的出圈顺序. 输入描述 In

AC日记——[NOIP2015]运输计划 cogs 2109

[NOIP2015] 运输计划 思路: 树剖+二分: 代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define maxn 300005 #define INF 0x7fffffff int n,deep[maxn],dis[maxn],dis_[maxn],f[maxn],top[maxn]; i

AC日记——丑数 codevs 1246

1246 丑数 USACO 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题解 查看运行结果 题目描述 Description 对于一给定的素数集合 S = {p1, p2, ..., pK}, 来考虑那些质因数全部属于S 的数的集合.这个集合包括,p1, p1p2, p1p1, 和 p1p2p3 (还有其它).这是个对于一个输入的S的丑数集合.注意:我们不认为1 是一个丑数.你的工作是对于输入的集合S去寻找集合中的第N个丑数.longint(signe

AC日记——元素查找 codevs 1230

1230 元素查找 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题解 查看运行结果 题目描述 Description 给出n个正整数,然后有m个询问,每个询问一个整数,询问该整数是否在n个正整数中出现过. 输入描述 Input Description 第一行两个整数 n 和m. 第二行n个正整数(1<=n<= 100000) 第三行m个整数(1<=m<=100000) 输出描述 Output Description 一共m行,若出现则输出

AC日记——平衡树练习 codevs 4244

4244 平衡树练习 思路: 有节操的人不用set也不用map: 代码: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; #define maxn 5000005 int n,m,ch[maxn][2],key[maxn],root; inline void in(int &now) { int if_

3287 货车运输

3287 货车运输 2013年NOIP全国联赛提高组 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题解 题目描述 Description A 国有 n 座城市,编号从 1 到 n,城市之间有 m 条双向道路.每一条道路对车辆都有重量限制,简称限重.现在有 q 辆货车在运输货物,司机们想知道每辆车在不超过车辆限重的情况下,最多能运多重的货物. 输入描述 Input Description 第一行有两个用一个空格隔开的整数 n,m,表示 A 国有 n 座城

Codevs3278[NOIP2013]货车运输

3287 货车运输 2013年NOIP全国联赛提高组 时间限制: 1 s 空间限制: 128000 KB 题目等级 : 钻石 Diamond 题目描述 Description A 国有 n 座城市,编号从 1 到 n,城市之间有 m 条双向道路.每一条道路对车辆都有重量限制,简称限重.现在有 q 辆货车在运输货物,司机们想知道每辆车在不超过车辆限重的情况下,最多能运多重的货物. 输入描述 Input Description 第一行有两个用一个空格隔开的整数 n,m,表示 A 国有 n 座城市和

货车运输

版权声明:本文为博主原创文章,未经博主允许不得转载. 传送门:货车运输 题目描述 A 国有 n 座城市,编号从 1 到 n,城市之间有 m 条双向道路.每一条道路对车辆都有重量限制,简称限重.现在有 q 辆货车在运输货物, 司机们想知道每辆车在不超过车辆限重的情况下,最多能运多重的货物. 输入输出格式 输入格式: 输入文件名为 truck.in. 输入文件第一行有两个用一个空格隔开的整数 n,m,表示 A 国有 n 座城市和 m 条道 路. 接下来 m 行每行 3 个整数 x. y. z,每两个

AC日记——Aragorn&#39;s Story HDU 3966

Aragorn's Story Time Limit: 10000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 10510    Accepted Submission(s): 2766 Problem Description Our protagonist is the handsome human prince Aragorn comes from The Lor