热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

poj1734(floyd求最小环)

SightseeingtripTimeLimit:1000MSMemoryLimit:65536KTotalSubmissions:7483Accepted:2827Special

Sightseeing trip

















Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 7483 Accepted: 2827 Special Judge

Description

There is a travel agency in Adelton town on Zanzibar island. It has decided to offer its clients, besides many other attractions, sightseeing the town. To earn as much as possible from this attraction, the agency has accepted a shrewd decision: it is necessary to find the shortest route which begins and ends at the same place. Your task is to write a program which finds such a route.
In the town there are N crossing points numbered from 1 to N and M
two-way roads numbered from 1 to M. Two crossing points can be
connected by multiple roads, but no road connects a crossing point with
itself. Each sightseeing route is a sequence of road numbers y_1, ...,
y_k, k>2. The road y_i (1<=i<=k-1) connects crossing points x_i
and x_{i+1}, the road y_k connects crossing points x_k and x_1. All the
numbers x_1,...,x_k should be different.The length of the sightseeing
route is the sum of the lengths of all roads on the sightseeing route,
i.e. L(y_1)+L(y_2)+...+L(y_k) where L(y_i) is the length of the road y_i
(1<=i<=k). Your program has to find such a sightseeing route,
the length of which is minimal, or to specify that it is not
possible,because there is no sightseeing route in the town.

Input

The
first line of input contains two positive integers: the number of
crossing points N<=100 and the number of roads M<=10000. Each of
the next M lines describes one road. It contains 3 positive integers:
the number of its first crossing point, the number of the second one,
and the length of the road (a positive integer less than 500).

Output

There
is only one line in output. It contains either a string ‘No solution.‘
in case there isn‘t any sightseeing route, or it contains the numbers of
all crossing points on the shortest sightseeing route in the order how
to pass them (i.e. the numbers x_1 to x_k from our definition of a
sightseeing route), separated by single spaces. If there are multiple
sightseeing routes of the minimal length, you can output any one of
them.

Sample Input

5 7
1 4 1
1 3 300
3 1 10
1 2 16
2 3 100
2 5 15
5 3 20

Sample Output

1 3 5 2

Source

CEOI 1999

 

此题为求最小环问题

 

考虑的floyd中 ,d[i][j]表示求经过不超过k-1的最短路

所以,最小环可由min{d[i][j]+a[k][i]+a[j][k]}求的;

如图

技术分享图片


#include
#include

#include

#include

using namespace std;
const int maxn=300+10;
int ans=0x3f3f3f3f;
int a[maxn][maxn],d[maxn][maxn],pos[maxn][maxn];
vector
<int>path;
void getpath(int x,int y){
if(pos[x][y]==0) return ;
getpath(x,pos[x][y]);
path.push_back(pos[x][y]);
getpath(pos[x][y],y);
}
int main(){
int n,m;
scanf(
"%d%d",&n,&m);
int u,v,w;
memset(d,
0x3f3f3f3f,sizeof(d));
memset(a,
0x3f3f3f3f,sizeof(a));
while(m--){
scanf(
"%d%d%d",&u,&v,&w);
a[u][v]
=a[v][u]=d[u][v]=d[v][u]=min(a[u][v],w);
}
for (int k=1;k<=n;k++){
for (int i=1;i){
for (int j=i+1;j){
if((long long)d[i][j]+a[k][i]+a[j][k]<ans){
ans
=d[i][j]+a[k][i]+a[j][k];
path.clear();
path.push_back(i);
getpath(i,j);
path.push_back(j);
path.push_back(k);
}
}
}
for (int i=1;i<=n;i++){
for (int j=1;j<=n;j++){
if(d[i][j]>d[i][k]+d[k][j]){
d[i][j]
=d[i][k]+d[k][j];
pos[i][j]
=k;
}
}
}
}
if(ans==0x3f3f3f3f) printf("No solution.\n");
else {
for (int i=0;i){
printf("%d ",path[i]);
}
printf(
"\n");
}
return 0;
}

 


推荐阅读
  • iOS snow animation
    CTSnowAnimationView.hCTMyCtripCreatedbyalexon1614.Copyright©2016年ctrip.Allrightsreserved.# ... [详细]
  • 阿里云 Aliplayer高级功能介绍(八):安全播放
    如何保障视频内容的安全,不被盗链、非法下载和传播,阿里云视频点播已经有一套完善的机 ... [详细]
  • packagecom.panchan.tsmese.utils;importjava.lang.reflect.ParameterizedType;importjava.lang. ... [详细]
  • Java EE 平台集成了多种服务、API 和协议,旨在支持基于 Web 的多层应用程序开发。本文将详细介绍 Java EE 中的 13 种关键技术规范,帮助开发者更好地理解和应用这些技术。 ... [详细]
  • Gty的二逼妹子序列 - 分块与莫队算法的应用
    Autumn 和 Bakser 正在研究 Gty 的妹子序列,但遇到了一个难题。他们希望计算某个区间内美丽度属于 [a, b] 的妹子的美丽度种类数。本文将详细介绍如何利用分块和莫队算法解决这一问题。 ... [详细]
  • 从零开始编译Linux系统:第16章 全新起点
    本章将详细介绍如何从零开始编译一套完整的Linux系统,涵盖关键组件如glibc库的介绍及其重要性。通过本文,读者将了解从源代码构建Linux系统的全过程。 ... [详细]
  • 本文介绍了如何使用Postman构建和发送HTTP请求,包括四个主要部分:方法(Method)、URL、头部(Headers)和主体(Body)。特别强调了Body部分的重要性,并详细说明了不同类型的请求体。 ... [详细]
  • 如何解决TS1219:实验性装饰器功能可能在未来版本中更改的问题
    本文介绍了两种方法来解决TS1219错误:通过VSCode设置启用实验性装饰器,或在项目根目录下创建配置文件(jsconfig.json或tsconfig.json)。 ... [详细]
  • 本文介绍了一种支付平台异步风控系统的架构模型,旨在为开发类似系统的工程师提供参考。 ... [详细]
  • JavaSE For循环入门示例
    本文将介绍Java中For循环的基本概念和使用方法,通过几个简单的示例帮助初学者更好地理解和掌握For循环。 ... [详细]
  • 本文介绍了 Confluence 6 中使用的其他 Cookie,这些 Cookie 主要用于存储产品的基本持久性和用户偏好设置,以提升用户体验。 ... [详细]
  • Bootstrap 缩略图展示示例
    本文将展示如何使用 Bootstrap 实现缩略图效果,并提供详细的代码示例。 ... [详细]
  • Manacher算法详解:寻找最长回文子串
    本文将详细介绍Manacher算法,该算法用于高效地找到字符串中的最长回文子串。通过在字符间插入特殊符号,Manacher算法能够同时处理奇数和偶数长度的回文子串问题。 ... [详细]
  • malloc 是 C 语言中的一个标准库函数,全称为 memory allocation,即动态内存分配。它用于在程序运行时申请一块指定大小的连续内存区域,并返回该区域的起始地址。当无法预先确定内存的具体位置时,可以通过 malloc 动态分配内存。 ... [详细]
  • 本文介绍了多种开源数据库及其核心数据结构和算法,包括MySQL的B+树、MVCC和WAL,MongoDB的tokuDB和cola,boltDB的追加仅树和mmap,levelDB的LSM树,以及内存缓存中的一致性哈希。 ... [详细]
author-avatar
手机用户2602901471
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有