描述

Once,in a kingdom,there are N cities.M roads have been buit such that from one city you can reach any other cities.Between any two cities there is at most one road.But after a series war,D road are destoryed.The king wants to repair the road system.There are two important cities A and B,The king wants to make  the two cities connected as soon as possible.Now it is your job to repair some roads such that A and B are connected and the length of all roads repaired is minimun.

输入

Input may contain seveal test data sets.
For
each data set, the first line contain an integer
N(2<N<100),indicating the number of cities.The cities are numbered
from 1 To N.then the second line contains an integer M (
N-1<M<N*(N-1)/2),indicating the number of roads.Next come M
lines,each contains three integers I,J,K,which means that there is a
road between I and J,whose length is K.
 Then next line contains an
integer D(1<=D<=M),indicating the number of roads which are
destoryed.The following D lines each contain two integer I,J,which means
that the road which directly connected city I and J has been destoryed.
 The last line contains two integer A,B,indicating the two important cities.

Input is ended by N = 0,which should not be processed.

输出

For
each test case,just output one line with the total length of the roads
needed to repair such that A and B are connected.If we could not raech B
from A,output"-1".

样例输入

3
2
1 2 1
2 3 2
1
1 2
1 3
0

样例输出

1

每个城市之间都有一些路连接,某些城市之间的有遭到了破坏,现在要求我们求修路的最短长度。

如果修完所有的路也无法保证通行则输出-1。

逆向思维,让城市之间已经存在的路的长度为0,需要修补的初始化要修补的路的长度。这样就变成了简单的单源最短路径问题了。

#include <stdio.h>
#include <string.h>
#define MAXN 110
#define inf 0x3f3f3f3f int N;
int m1[MAXN][MAXN];
int m2[MAXN][MAXN];
int dist[MAXN];
int visited[MAXN]; void dijkstra(int begin){
int i,j,k;
k=begin;
for(j=1; j<=N; j++){
visited[j]=0;
if(j!=k){
dist[j]=m2[k][j];
}
}
visited[k]=1;
for(i=1;i<N-1;i++){
int min=inf;
k=0;
for(j=1; j<=N; j++){
if(!visited[j]&&dist[j]<min){
min=dist[j];
k=j;
}
}
if(k==0)break;
visited[k]=1;
for(j=1; j<=N; j++){
if(!visited[j]&& dist[k]+m2[k][j]<dist[j]){
dist[j]=dist[k]+m2[k][j];
}
}
}
} int main(){
int M,D,a,b,c;
int B,E;
while( scanf("%d",&N)!=EOF && N){
for( int i=1 ;i<=N; i++ ){
for( int j=1; j<=N; j++ ){
if(i==j)m2[i][j]=0;
else m2[i][j]=inf;
}
}
scanf("%d",&M);
for( int i=0; i<M; i++ ){
scanf("%d%d%d",&a,&b,&c);
m1[a][b]=c;
m1[b][a]=c;
m2[a][b]=0;
m2[b][a]=0;
}
scanf("%d",&D);
for( int i=0; i<D; i++ ){
scanf("%d%d",&a,&b);
m2[a][b]=m1[a][b];
m2[b][a]=m1[b][a];
}
scanf("%d%d",&B,&E);
dijkstra(B);
if(dist[E]==inf){
printf("-1\n");
}else{
printf("%d\n",dist[E]);
}
}
return 0;
}

TOJ 4394 Rebuild Road的更多相关文章

  1. POJ 3204 Ikki's Story I - Road Reconstruction

    Ikki's Story I - Road Reconstruction Time Limit: 2000MS   Memory Limit: 131072K Total Submissions: 7 ...

  2. POJ3204 Ikki's Story I - Road Reconstruction

    Ikki's Story I - Road Reconstruction Time Limit: 2000MS   Memory Limit: 131072K Total Submissions: 7 ...

  3. HDU 3080 The plan of city rebuild(除点最小生成树)

    题意  一个城市原来有l个村庄 e1条道路  又添加了n个村庄 e2条道路  后来后销毁了m个村庄  与m相连的道路也销毁了  求使全部未销毁村庄相互连通最小花费  不能连通输出what a pity ...

  4. HDU 3080 The plan of city rebuild(prim和kruskal)

    The plan of city rebuild Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java ...

  5. Visual Studio 中 Build 和 Rebuild 的区别

    因为之前写的程序比较小,编译起来比较快,所以一直都没有太在意 Build 和 Rebuild 之间的区别,后来发现两个还是有很大不同. Build 只针对在上次编译之后更改过的文件进行编译,在项目比较 ...

  6. 解决 node-gyp rebuild 卡住 的问题

    node-gyp在编译前会首先尝试下载node的headers文件,像这样: gyp http GET https://nodejs.org/download/release/v6.8.1/node- ...

  7. AndroidStudio中make Project、clean Project、Rebuild Project的区别

    1.Make Project:编译Project下所有Module,一般是自上次编译后Project下有更新的文件,不生成apk. 2.Make Selected Modules:编译指定的Modul ...

  8. 【Codeforces 738C】Road to Cinema

    http://codeforces.com/contest/738/problem/C Vasya is currently at a car rental service, and he wants ...

  9. Rebuild Instance 操作详解 - 每天5分钟玩转 OpenStack(37)

    上一节我们讨论了 snapshot,snapshot 的一个重要作用是对 instance 做备份. 如果 instance 损坏了,可以通过 snapshot 恢复,这个恢复的操作就是 Rebuil ...

随机推荐

  1. ElasticSearch 笔记(一)

    一.Elasticsearch 印象 分布式.全文检索.数据分析. 二.为什么不用传统关系型数据库,如 MySQL,做搜索 举个反例.假设有以下数据库表 t_game: id   name 1 唐僧取 ...

  2. python 读取mysql存储的文件路径下载文件,内容解析,上传七牛云,内容入es

    #!/usr/bin/env python # -*- coding: utf-8 -*- import ConfigParser import json import os import re fr ...

  3. U盘安装Ubuntu 12.04成功后系统无法启动的原因及解决办法

    想搭建一个Linux开发环境,选择了ubuntu12.04长期支持版,采用u盘安装(Universal-USB-Installer做的启动),发现安装完成之后,拔掉u盘无法启动,插上u盘之后,可以重启 ...

  4. C#生成静态文件

    一般生成文件都是通过读取模板文件,然后替换标签. 这些古老的方法使用起来不但麻烦而且效率还不怎么样. 这里给添加介绍一个方法. 如果你用过asp.net.mvc (Razor),你就应该明白 chtm ...

  5. android android各种应用的许可

    android各种应用的许可 在Android的设计中,资源的访问或者网络连接,要得到这些服务都需要声明其访问权限,否则将无法正常工作.在Android中这样的权限有很多种,这里将各类访问权限一一罗列 ...

  6. [Violet]樱花

    题目链接 洛谷 狗粮版 前置技能 初中基础的因式分解 线性筛 \(O(nlog)\)的分解质因数 唯一分解定理 题解 首先来分解一下式子 \[\frac{1}{x}+\frac{1}{y}=\frac ...

  7. 上课总结-数据库Chapter2: 关系数据库

    Chapter2: 关系数据库 一.搞懂主键 外键关系 主键(主码):能唯一标识一个元组的某一属性组. 外键:不是这组数据的主键 但是另一组数据的唯一主键(当这组数据的主键有2个时 可以作为外键) 例 ...

  8. luoguP3302 [SDOI2013]森林

    https://www.luogu.org/problemnew/show/P3302 看到查询第 k 小,而且是一颗树,可以联想到在树上的主席树,a 和 b 路径中第 k 小可以通过在 a, b, ...

  9. uoj #111. 【APIO2015】Jakarta Skyscrapers

    #111. [APIO2015]Jakarta Skyscrapers 印尼首都雅加达市有 NN 座摩天楼,它们排列成一条直线,我们从左到右依次将它们编号为 00 到 N−1N−1.除了这 NN 座摩 ...

  10. vue的生命周期钩子函数

    一.vue生命周期图示 二.钩子函数执行时间 beforeCreate      在创建实例之前,data只声明但没有赋值  在实例初始化之后,数据观测 (data observer) 和 event ...