UPC 6610 Restoring Road Network

news/2024/11/30 7:33:35/

 问题 C: Restoring Road Network

题目描述

In Takahashi Kingdom, which once existed, there are N cities, and some pairs of cities are connected bidirectionally by roads. The following are known about the road network:
People traveled between cities only through roads. It was possible to reach any city from any other city, via intermediate cities if necessary.
Different roads may have had different lengths, but all the lengths were positive integers.
Snuke the archeologist found a table with N rows and N columns, A, in the ruin of Takahashi Kingdom. He thought that it represented the shortest distances between the cities along the roads in the kingdom.
Determine whether there exists a road network such that for each u and v, the integer Au,v at the u-th row and v-th column of A is equal to the length of the shortest path from City u to City v. If such a network exist, find the shortest possible total length of the roads.

Constraints
1≤N≤300
If i≠j, 1≤Ai,j=Aj,i≤109.
Ai,i=0

输入

Input is given from Standard Input in the following format:
N
A1,1 A1,2 … A1,N
A2,1 A2,2 … A2,N

AN,1 AN,2 … AN,N

输出

If there exists no network that satisfies the condition, print -1. If it exists, print the shortest possible total length of the roads.

样例输入

3
0 1 3
1 0 2
3 2 0
样例输出
3
提示
The network below satisfies the condition:
City 1 and City 2 is connected by a road of length 1.
City 2 and City 3 is connected by a road of length 2.
City 3 and City 1 is not connected by a road.
#include<bits/stdc++.h>
using namespace std;int n;
int a[305][305];
int dis[305][305];
int path[305][305];void floyd()
{int i,j,k;for(k=0;k<n;k++){for(i=0;i<n;i++){for(j=0;j<n;j++){if(dis[i][k]+dis[k][j]<=dis[i][j]){dis[i][j]=dis[i][k]+dis[k][j];path[i][j]++;}}}}
}int main()
{while(~scanf("%d",&n)){memset(a,0,sizeof(a));memset(dis,0,sizeof(dis));memset(path,0,sizeof(path));for(int i=0;i<n;i++)for(int j=0;j<n;j++){scanf("%d",&a[i][j]);dis[i][j]=a[i][j];}floyd();long long sum=0;int flag=0,f=0;for(int i=0;i<n&&flag==0;i++){for(int j=0;j<n;j++){if(path[i][j]==2)sum+=a[i][j];if(a[i][j]!=dis[i][j]){flag=1;break;}}}if(flag==1){printf("-1\n");}elseprintf("%lld\n",sum/2);}return 0;
}

 


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

相关文章

【HDU 6610】Game

1.题目链接。题目的意思其实就是在问&#xff1a;先把数列做一个前缀异或和&#xff0c;然后给定区间【L,R】&#xff0c;算一下区间内有多少对数异或值不为0.我们知道&#xff0c;只有两个相等的数异或起来才是0&#xff0c;所以再转化计算其对立问题&#xff1a;区间内有多少…

2019杭电多校第三场 HDU 6610

题意 给出 n n n个数&#xff0c;询问一个区间 [ L , R ] [L,R] [L,R]&#xff0c;在这个区间内找 [ l , r ] [l,r] [l,r] 做 N I M NIM NIM游戏&#xff0c;问先手必胜的 [ l , r ] [l,r] [l,r] 种类数 首先&#xff0c; N I M NIM NIM游戏的判断条件为 &#xff0c;所有数…

TPS61088的同步升压转换器 替换物料 SGM6610

圣邦微电子的SGM6610是一款输出高达10A的开关型同步升压芯片&#xff0c;其输入电压范围&#xff0c;输出电压范围&#xff0c;工作模式&#xff0c;开关频率范围&#xff0c;拓扑结构&#xff0c;结温范围与TI公司的TPS61088相同&#xff0c;封装尺寸和引脚位号定义也与TI公司…

hdu 6610 Game

题意&#xff1a;带修改地维护区间异或和 思路&#xff1a;带修改莫队&#xff08;注意分块大小为 0.66666n&#xff09; #include <bits/stdc.h> using namespace std; typedef int lint; typedef long long LL; const lint maxn 1000005; lint a[maxn],pos[maxn],su…

新品、实测、终端……MWC2023上海展,移远通信又为物联行业带来了哪些惊喜?

6月28日&#xff0c;MWC上海世界移动通信大会拉开帷幕&#xff0c;围绕“时不我待”主题&#xff0c;今年的展会包含5G变革、数字万物与“超越现实”三大主题方向&#xff0c;充分展示了以5G、大数据、AI等新一代信息技术赋能社会经济发展的重要成果。 作为物联网整体解决方案供…

nginx里使用openresty-lua-redis等

安装 version: "3" services:nginx_lua:image: openresty/openresty:alpine#image: openresty/openresty:latest #没有安装opm以下命令可以在Dockerfile编写, 前缀以RUN补充,使其创建新的镜像 或者在运行后,进容器后直接运行 安装opm curl -L -o /usr/local/bin/o…

爬虫入门指南:学习爬虫的基础知识和技巧

文章目录 爬虫基础知识什么是爬虫&#xff1f;爬虫的工作原理爬虫的应用领域 爬虫准备工作安装Python安装必要的库和工具 网页解析与XPath网页结构与标签CSS选择器与XPathXpath 语法XPath的基本表达式&#xff1a;XPath的谓语&#xff08;Predicate&#xff09;&#xff1a;XPa…

win10无限重启_让迷你掌上电脑更具生产力,GPD安装 Win10+Ubuntu双系统

作为一名电气工程师(偶尔也充当程序员的角色)&#xff0c;刚子一直想拥有一台小巧便携续航强的笔记本电脑&#xff0c;以应对经常出差调试的任务。市场上常见的笔记本电脑一般都是13吋以上的&#xff0c;背出去实在太沉重&#xff0c;轻薄本很多接口不全&#xff0c;又需要扩展…