题意简叙:

FarmerFarmerFarmer JohnJohnJohn有B头奶牛(1&lt;=B&lt;=25000)(1&lt;=B&lt;=25000)(1<=B<=25000),有N(2∗B&lt;=N&lt;=50000)N(2*B&lt;=N&lt;=50000)N(2∗B<=N<=50000)个农场,编号1−N1-N1−N,有M(N−1&lt;=M&lt;=100000)M(N-1&lt;=M&lt;=100000)M(N−1<=M<=100000)条双向边,第i条边连接农场RiR_iRi​和Si(1&lt;=Ri&lt;=N;1&lt;=Si&lt;=N)S_i(1&lt;=R_i&lt;=N;1&lt;=S_i&lt;=N)Si​(1<=Ri​<=N;1<=Si​<=N),该边的长度是Li(1&lt;=Li&lt;=2000)L_i(1&lt;=L_i&lt;=2000)Li​(1<=Li​<=2000)。居住在农场PiP_iPi​的奶牛A(1&lt;=Pi&lt;=N)A(1&lt;=P_i&lt;=N)A(1<=Pi​<=N),它想送一份新年礼物给居住在农场Qi(1&lt;=Qi&lt;=N)Q_i(1&lt;=Q_i&lt;=N)Qi​(1<=Qi​<=N)的奶牛B,但是奶牛A必须先到FJ(居住在编号1的农场)那里取礼物,然后再送给奶牛B。你的任务是:奶牛A至少需要走多远的路程?

题目分析:

不难看出,这就是一道单元最短路的裸题

我们可以首先用dijkstra单源最短路跑出1到所有点之间的最短路径,然后每问一次就调用一次即可,具体见代码。

代码:

#include<cstdio>
#include<queue>
#include<vector>
using namespace std;
#define pa pair<int,int>
#define maxn 100010
priority_queue<pa,vector<pa>,greater<pa> > q;
struct edge
{
int val,to;
};
int n,m,s,dis[maxn];
bool vis[maxn];
vector<edge>e[maxn];
int main()
{
int b;
scanf("%d%d%d",&n,&m,&b);
s=1;
for(int i=1;i<=m;i++)
{
int x,y,z;
scanf("%d%d%d",&x,&y,&z);
edge tmp;
tmp.to=y;
tmp.val=z;
e[x].push_back(tmp);
tmp.to=x;
tmp.val=z;
e[y].push_back(tmp);//注意这里一定要存储双向边
}
//start
for(int i=1;i<=n;i++)
{
dis[i]=2147483647;//初始化
} dis[s]=0;
q.push(make_pair(0,s));
while(q.empty()==0)
{
int x=q.top().second;
q.pop();
if(vis[x]==1)
continue;
vis[x]=1;
for(int i=0;i<e[x].size();i++)
{
int y=e[x][i].to;
if(dis[x]+e[x][i].val<dis[y])
{
dis[y]=dis[x]+e[x][i].val;
q.push(make_pair(dis[y],y));
}
}
}
//finish
//以上的部分皆为dijkstra标准模板,写的还算比较正规,感谢趣的同志可以收藏一下。(逃
for(int i=1;i<=b;i++)
{
int x,y;
scanf("%d%d",&x,&y);
printf("%d\n",dis[x]+dis[y]);//直接调用
}
return 0;
}

[USACO10FEB]给巧克力Chocolate Giving的更多相关文章

  1. 洛谷 P2984 [USACO10FEB]给巧克力Chocolate Giving

    题目描述 Farmer John is distributing chocolates at the barn for Valentine's day, and B (1 <= B <= ...

  2. 洛谷——P2984 [USACO10FEB]给巧克力Chocolate Giving

    https://www.luogu.org/problem/show?pid=2984 题目描述 Farmer John is distributing chocolates at the barn ...

  3. 【luogu P2984 [USACO10FEB]给巧克力Chocolate Giving】 题解

    题目链接:https://www.luogu.org/problemnew/show/P2984 练习SPFA,把FJ当做起点,求出到所有牛的最短路,再把两个牛的相加. #include <cs ...

  4. P2985 [USACO10FEB]吃巧克力Chocolate Eating

    P2985 [USACO10FEB]吃巧克力Chocolate Eating 题目描述 Bessie has received N (1 <= N <= 50,000) chocolate ...

  5. 洛谷——P2983 [USACO10FEB]购买巧克力Chocolate Buying

    P2983 [USACO10FEB]购买巧克力Chocolate Buying 题目描述 Bessie and the herd love chocolate so Farmer John is bu ...

  6. 洛谷 P2983 [USACO10FEB]购买巧克力Chocolate Buying 题解

    P2983 [USACO10FEB]购买巧克力Chocolate Buying 题目描述 Bessie and the herd love chocolate so Farmer John is bu ...

  7. 洛谷 P2983 [USACO10FEB]购买巧克力Chocolate Buying

    购买巧克力Chocolate Buying 乍一看以为是背包,然后交了一个感觉没错的背包上去. #include <iostream> #include <cstdio> #i ...

  8. P2983 [USACO10FEB]购买巧克力Chocolate Buying

    题目描述 Bessie and the herd love chocolate so Farmer John is buying them some. The Bovine Chocolate Sto ...

  9. 【洛谷】P2983 [USACO10FEB]购买巧克力Chocolate Buying(贪心)

    题目描述 Bessie and the herd love chocolate so Farmer John is buying them some. The Bovine Chocolate Sto ...

随机推荐

  1. wsl相关总结

    启用WSL VirtualMachinePlatform是WSL2依赖功能,需要系统支持(build 18917+),硬件支持VM功能并开启,安装完成后要重启计算机. Enable-WindowsOp ...

  2. 建立Linux计划命令crontab

    crontab翻译:排程,命令 crontab从输入设备输入命令,并将其放入crontab文件,供守护进程crond读取并执行,crond在后台每一分钟执行一次 crontab -e:创建计划命令,进 ...

  3. 使用dumpbin命令查看dll导出函数及重定向输出到文件(VS自带)

    以前查看dll导出函数,一般使用Viewdll等第三方工具.但由于Viewdll采用dephi编写,因此仅能查看32位的dll.其实微软已经帮我们提供一个查看dll导出函数的命令,嵌在VS开发环境中, ...

  4. Globalize 1.0 发布,jQuery 的国际化插件

    分享 <关于我> 分享  [中文纪录片]互联网时代                 http://pan.baidu.com/s/1qWkJfcS 分享 <HTML开发MacOSAp ...

  5. 使用mingw编译完整Qt5的过程(使用了niXman的msys套装)good

    使用mingw编译完整Qt5的过程 坛子里似乎已经有人编译出Qt5了,不过大多有问题,不是缺少opengl就是缺少openssl,还有缺少webkit的,本文提供的仍然不能说是绝对完整的,不过相对以前 ...

  6. mybatis链接数据库

    DBTools类 public class DBTools { // 加载mybatis文件 public static SqlSession getSession() { //加载配置文件 Inpu ...

  7. java.lang.Integer cannot be cast to java.lang.String

    错误原因是类型转换! 说Integer 类型不能转成String类型.  解决办法: 将错误中的(String)强制转换类型修改为    object.toString() toString方法是Ja ...

  8. 解码mmo游戏服务器三:大地图同步(aoi)

    问题引入:aoi(area of interest).在大地图中,玩家只需要关心自己周围的对象变化,而不需要关心距离较远的对象的变化.所以大地图中的数据不需要全部广播,只要同步玩家自己视野范围的消息即 ...

  9. 【JDK基础】java基础的一些资料

    工具:https://blog.csdn.net/javazejian/article/details/72828483 类加载器:https://blog.csdn.net/X5fnncxzq4/a ...

  10. MethodInterceptor-方法拦截器

    MethodInterceptor 方法拦截器,也就是aop拦截方法 1.使用示例 public interface MethodInterceptor extends Interceptor { O ...