洛谷 P2888 [USACO07NOV] 牛栏Cow Hurdles

news/2024/12/13 17:04:58/

题目描述

Farmer John wants the cows to prepare for the county jumping competition, so Bessie and the gang are practicing jumping over hurdles. They are getting tired, though, so they want to be able to use as little energy as possible to jump over the hurdles.

Obviously, it is not very difficult for a cow to jump over several very short hurdles, but one tall hurdle can be very stressful. Thus, the cows are only concerned about the height of the tallest hurdle they have to jump over.

The cows' practice room has N (1 ≤ N ≤ 300) stations, conveniently labeled 1..N. A set of M (1 ≤ M ≤ 25,000) one-way paths connects pairs of stations; the paths are also conveniently labeled 1..M. Path i travels from station Si to station Ei and contains exactly one hurdle of height Hi (1 ≤ Hi ≤ 1,000,000). Cows must jump hurdles in any path they traverse.

The cows have T (1 ≤ T ≤ 40,000) tasks to complete. Task i comprises two distinct numbers, Ai and Bi (1 ≤ Ai ≤ N; 1 ≤ Bi ≤ N), which connote that a cow has to travel from station Ai to station Bi (by traversing over one or more paths over some route). The cows want to take a path the minimizes the height of the tallest hurdle they jump over when traveling from Ai to Bi . Your job is to write a program that determines the path whose tallest hurdle is smallest and report that height.

  Farmer John 想让她的奶牛准备郡级跳跃比赛,贝茜和她的伙伴们正在练习跨栏。她们很累,所以她们想消耗最少的能量来跨栏。 显然,对于一头奶牛跳过几个矮栏是很容易的,但是高栏却很难。于是,奶牛们总是关心路径上最高的栏的高度。 奶牛的训练场中有 N (1 ≤ N ≤ 300) 个站台,分别标记为1..N。所有站台之间有M (1 ≤ M ≤ 25,000)条单向路径,第i条路经是从站台Si开始,到站台Ei,其中最高的栏的高度为Hi (1 ≤ Hi ≤ 1,000,000)。无论如何跑,奶牛们都要跨栏。 奶牛们有 T (1 ≤ T ≤ 40,000) 个训练任务要完成。第 i 个任务包含两个数字 Ai 和 Bi (1 ≤ Ai ≤ N; 1 ≤ Bi ≤ N),表示奶牛必须从站台Ai跑到站台Bi,可以路过别的站台。奶牛们想找一条路径从站台Ai到站台Bi,使路径上最高的栏的高度最小。 你的任务就是写一个程序,计算出路径上最高的栏的高度的最小值。

输入输出格式

输入格式:

  • Line 1: Three space-separated integers: N, M, and T

  • Lines 2..M+1: Line i+1 contains three space-separated integers: Si , Ei , and Hi

  • Lines M+2..M+T+1: Line i+M+1 contains two space-separated integers that describe task i: Ai and Bi

行 1: 两个整数 N, M, T

行 2..M+1: 行 i+1 包含三个整数 Si , Ei , Hi

行 M+2..M+T+1: 行 i+M+1 包含两个整数,表示任务i的起始站台和目标站台: Ai , Bi

输出格式:

  • Lines 1..T: Line i contains the result for task i and tells the smallest possible maximum height necessary to travel between the stations. Output -1 if it is impossible to travel between the two stations.

行 1..T: 行 i 为一个整数,表示任务i路径上最高的栏的高度的最小值。如果无法到达,输出 -1。

输入输出样例

输入样例#1:
5 6 3
1 2 12
3 2 8
1 3 5
2 5 3
3 4 4
2 4 8
3 4
1 2
5 1
输出样例#1:
4
8
-1










说明

感谢 @gaozhiyong 提供翻译

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

floyd~

类似于一般的最短路,只不过更新边的时候改成更新最小的最高牛栏值,判断的时候如果等于INF,要输出-1~


#include<cstdio>
#include<cstring>
#include<iostream>
using namespace std;int n,m,t,x,y,val,fi[301],ne[25001],w[25001],v[25001],cnt,dis[301][301];int main()
{scanf("%d%d%d",&n,&m,&t);memset(dis,127,sizeof(dis));while(m--){scanf("%d%d%d",&x,&y,&val);dis[x][y]=val;}for(int i=1;i<=n;i++)for(int j=1;j<=n;j++)if(dis[j][i]!=2139062143)for(int k=1;k<=n;k++)if(dis[i][k]!=2139062143)dis[j][k]=min(dis[j][k],max(dis[j][i],dis[i][k]));while(t--){scanf("%d%d",&x,&y);if(dis[x][y]==2139062143) printf("-1\n");else printf("%d\n",dis[x][y]);}return 0;
}



http://www.ppmy.cn/news/628813.html

相关文章

08-Buffer

Buffer初识 在引入 TypedArray 之前&#xff0c;JavaScript 语言没有用于读取或操作二进制数据流的机制。 Buffer 类是作为 Node.js API 的一部分引入的&#xff0c;用于在 TCP 流、文件系统操作、以及其他上下文中与八位字节流进行交互。这是来自 Node.js 官网的一段描述&…

Codeforces Round#707 B-Napoleon Cake

题目传送门 题目大意 有n层蛋糕每个第i层上要涂上一层单位面积为ai的奶油&#xff0c;奶油会顺着蛋糕侧边流下&#xff0c;每ai面积的奶油就可以覆盖ai层蛋糕&#xff0c;你最后需要输出哪些层有奶油覆盖哪些层没有。 输入格式 第一行输入t(1<t<20000),表示t组测试样例…

洛谷 P2676 [USACO07DEC]Bookshelf B

接下来我们继续看排序题单的下一道—— P2676 [USACO07DEC]Bookshelf B&#x1f447; 题目描述 这道题目也是一样的&#xff0c;我们要透过题目所给的生活情境&#xff0c;直接看到它的本质所在——给定一个长度为N的正整数数列&#xff0c;里面的数字为乱序排列&#xff0c;问…

洛谷P4089The Bovine Shuffle S 详解

# [USACO17DEC]The Bovine Shuffle S ## 题面翻译 背景 FJ 坚信快乐的牛可以产出更多的牛奶&#xff0c;因此 FJ 在牛棚里安装了一个巨大的迪斯科球并且打算让奶牛们学会跳舞。 FJ在许多出名的奶牛舞中选择了一种叫做 Bovine Shuffle 的舞蹈。这种舞蹈由 FJ 的 $N$ 头奶牛组…

P1884 [USACO12FEB]Overplanting S——洛谷

解题思路&#xff1a; 离散化 差分矩阵 解题步骤&#xff1a; 因为原始坐标系与差分的坐标系不同&#xff0c;所以要进行坐标系的变换 离散化处理缩小查找空间 图中坐标离散化后&#xff0c;再转化为格子的坐标&#xff0c;因为之前存贮的坐标是点的坐标&#xff0c;每个格…

dfs-1756:八皇后及1700:八皇后问题

总时间限制: 1000ms 内存限制: 65536kB 描述 会下国际象棋的人都很清楚&#xff1a;皇后可以在横、竖、斜线上不限步数地吃掉其他棋子。如何将8个皇后放在棋盘上&#xff08;有8 * 8个方格&#xff09;&#xff0c;使它们谁也不能被吃掉&#xff01;这就是著名的八皇后问题…

uva705 - Slash Maze 【转化+dfs】

题目&#xff1a;uva705 - Slash Maze 题意&#xff1a;给出一个迷宫&#xff0c;看题目给出的图就知道&#xff0c;由 \ 和 / 组成&#xff0c;让你求有几个环&#xff0c;然后最大的环由几个矩形组成。 分析&#xff1a;这是一道很灵活的题目&#xff0c;关键在于对题目给出…

洛谷 P2895 [USACO08FEB]Meteor Shower S(BFS与时间)

题目 https://www.luogu.com.cn/problem/P2895#submit 思路 有一些问题与时间有关&#xff0c;往往题目描述是&#xff1a;每隔一段时间&#xff0c;一些点就被摧毁而不能走了&#xff0c;问能够到达指定点或者到达指定点的时间&#xff1f; 这类问题可以使用BFS求解&#xf…