CodeForces 666B World Tour(spfa+枚举)
5 seconds
512 megabytes
standard input
standard output
A famous sculptor Cicasso goes to a world tour!
Well, it is not actually a world-wide. But not everyone should have the opportunity to see works of sculptor, shouldn't he? Otherwise there will be no any exclusivity. So Cicasso will entirely hold the world tour in his native country — Berland.
Cicasso is very devoted to his work and he wants to be distracted as little as possible. Therefore he will visit only four cities. These cities will be different, so no one could think that he has "favourites". Of course, to save money, he will chose the shortest
paths between these cities. But as you have probably guessed, Cicasso is a weird person. Although he doesn't like to organize exhibitions, he likes to travel around the country and enjoy its scenery. So he wants the total distance which he will travel to be
as large as possible. However, the sculptor is bad in planning, so he asks you for help.
There are n cities and m one-way
roads in Berland. You have to choose four different cities, which Cicasso will visit and also determine the order in which he will visit them. So that the total distance he will travel, if he visits cities in your order, starting from the first city in your
list, and ending in the last, choosing each time the shortest route between a pair of cities — will be the largest.
Note that intermediate routes may pass through the cities, which are assigned to the tour, as well as pass twice through the same city. For example, the tour can look like that: .
Four cities in the order of visiting marked as overlines:[1, 5, 2, 4].
Note that Berland is a high-tech country. So using nanotechnologies all roads were altered so that they have the same length. For the same reason moving using regular cars is not very popular in the country, and it can happen that there are such pairs of cities,
one of which generally can not be reached by car from the other one. However, Cicasso is very conservative and cannot travel without the car. Choose cities so that the sculptor can make the tour using only the automobile. It is guaranteed that it is always
possible to do.
In the first line there is a pair of integers n and m (4 ≤ n ≤ 3000, 3 ≤ m ≤ 5000)
— a number of cities and one-way roads in Berland.
Each of the next m lines contains a pair of integers ui, vi (1 ≤ ui, vi ≤ n)
— a one-way road from the city ui to
the city vi.
Note that uiand vi are
not required to be distinct. Moreover, it can be several one-way roads between the same pair of cities.
Print four integers — numbers of cities which Cicasso will visit according to optimal choice of the route. Numbers of cities should be printed in the order that Cicasso will visit them. If there are multiple solutions, print any of them.
8 9
1 2
2 3
3 4
4 1
4 5
5 6
6 7
7 8
8 5
2 1 8 7
Floyed求最短路回超时,用spfa然后再枚举4个点中的中间两个点,头尾两个点
只需要取最大的就好了,当然不能有重复
#include <iostream>
#include <string.h>
#include <stdlib.h>
#include <string>
#include <math.h>
#include <stdio.h>
#include <vector>
#include <queue>
#include <algorithm> using namespace std;
const int INF=1000000;
#define MAX 3000
vector < pair<int,int> > a[MAX+5];
vector < pair<int,int> > b[MAX+5];
vector <int> c[MAX+5];
int d[MAX+5][MAX+5];
bool vis[MAX+5];
int res[5];
int n,m;
void spfa(int i)
{
memset(vis,false,sizeof(vis));
queue<int> q;
q.push(i);vis[i]=1;
while(!q.empty())
{
int x=q.front();q.pop();
vis[x]=0;
for(int j=0;j<c[x].size();j++)
{
int next=c[x][j];
if(d[i][next]>d[i][x]+1)
{
d[i][next]=d[i][x]+1;
if(!vis[next])
{
vis[next]=1;
q.push(next);
}
}
}
}
}
int main()
{
scanf("%d%d",&n,&m);
int x,y;
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
{
if(i==j) d[i][j]=0;
else d[i][j]=INF;
}
for(int i=1;i<=m;i++)
{
scanf("%d%d",&x,&y);
c[x].push_back(y);
}
for(int i=1;i<=n;i++)
spfa(i);
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
{
if(i==j) continue;
if(d[i][j]!=INF) a[i].push_back(make_pair(d[i][j],j));
if(d[j][i]!=INF) b[i].push_back(make_pair(d[j][i],j));
}
sort(a[i].begin(),a[i].end());
sort(b[i].begin(),b[i].end());
}
int ans=0;
for(int i=1;i<=n;i++)
{
int nn=b[i].size();
for(int j=1;j<=n;j++)
{
if(i==j) continue;
if(d[i][j]==INF) continue;
int mm=a[j].size();
for(int k=nn-1;k>=0&&k>=nn-3;k--)
{
int kk=b[i][k].second;
if(kk==j||kk==i) continue;
for(int p=mm-1;p>=0&&p>=mm-3;p--)
{
int pp=a[j][p].second;
if(pp==i||pp==j||pp==kk) continue;
if(ans<d[kk][i]+d[i][j]+d[j][pp])
{
ans=d[kk][i]+d[i][j]+d[j][pp];
res[1]=kk;res[2]=i;res[3]=j;res[4]=pp;
}
}
}
}
}
//printf("%d\n",ans);
for(int i=1;i<=4;i++)
{
if(i==4)
printf("%d\n",res[i]);
else
printf("%d ",res[i]);
}
return 0;
}
CodeForces 666B World Tour(spfa+枚举)的更多相关文章
- [Codeforces 666B] World Tour
[题目链接] https://codeforces.com/contest/666/problem/B [算法] 首先 , 用BFS求出任意两点的最短路径 然后 , 我们用f[i][0-2]表示从i出 ...
- Codeforces 667D World Tour 最短路
链接 Codeforces 667D World Tour 题意 给你一个有向稀疏图,3000个点,5000条边. 问选出4个点A,B,C,D 使得 A-B, B-C, C-D 的最短路之和最大. 思 ...
- Codeforces Round #103 (Div. 2) D. Missile Silos(spfa + 枚举边)
题目链接:http://codeforces.com/problemset/problem/144/D 思路:首先spfa求出中心点S到其余每个顶点的距离,统计各顶点到中心点的距离为L的点,然后就是要 ...
- Codeforces 667D World Tour【最短路+枚举】
垃圾csdn,累感不爱! 题目链接: http://codeforces.com/contest/667/problem/D 题意: 在有向图中找到四个点,使得这些点之间的最短距离之和最大. 分析: ...
- BZOJ-1880 Elaxia的路线 SPFA+枚举
1880: [Sdoi2009]Elaxia的路线 Time Limit: 4 Sec Memory Limit: 64 MB Submit: 921 Solved: 354 [Submit][Sta ...
- Codeforces Gym 100002 B Bricks 枚举角度
Problem B Bricks" Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100002 ...
- POJ 1135 Domino Effect (spfa + 枚举)- from lanshui_Yang
Description Did you know that you can use domino bones for other things besides playing Dominoes? Ta ...
- Codeforces 490F. Treeland Tour 暴力+LIS
枚举根+dfs 它可以活 , 我不知道有什么解决的办法是积极的 ...... F. Treeland Tour time limit per test 5 seconds memory limit p ...
- Codeforces Round #434 (Div. 2, based on Technocup 2018 Elimination Round 1)&&Codeforces 861B Which floor?【枚举,暴力】
B. Which floor? time limit per test:1 second memory limit per test:256 megabytes input:standard inpu ...
随机推荐
- linux下的几个cd命令
linux cd命令 cd data 进入到 data 目录 cd .. 返回上级文件夹 cd ~ 返回用户主文件夹 cd / 返回根文件夹
- Objective-C中的类型转换
转自:http://blog.csdn.net/lonelyroamer/article/details/7711920 类型转换 表2-3列出了简单数据类型.示例和格式符. 表2-3 简单数据类型. ...
- 安装gstreamer开发环境
ubuntu中安装gstreamer开发环境: * 安装gstreamer基本库,工具,以及插件 sudo apt--dev gstreamer-tools gstreamer0.-tools gst ...
- python之读取Excel 文件
# -*- coding: utf-8 -*- """ Created on Thu May 24 13:53:10 2018 @author: Frank " ...
- MapReduce编程实例3
MapReduce编程实例: MapReduce编程实例(一),详细介绍在集成环境中运行第一个MapReduce程序 WordCount及代码分析 MapReduce编程实例(二),计算学生平均成绩 ...
- matlab hornerDemo
% a quick demo of Horner's method and its effects clear all close all % first a comparison of ways t ...
- IPC之信号量
无名信号量 POSIX标准提出了有名信号量和无名信号量来同步进程和线程,而linux(2.6以前)只实现了无名信号量. sem_overview中有详细介绍:man 7 sem_overview. S ...
- volatile关键字是什么意思
我写了一段简单的对比代码并分别用vs2017以release方式编译然后用IDA观察汇编代码,如下图所示: 代码1 int a=5; printf("%d",a) 代码2 vola ...
- 使用python进行新浪微博粉丝爬虫
由于最近没事在学python,正好最近也想趴下新浪微博上边的一些数据,在这里主要爬去的是一个人的粉丝具体信息(微博昵称,个人介绍,地址,通过什么方式进行关注),所以就学以致用,通过python来爬去微 ...
- The.first.glance.at.linux.commands
## Get Ubuntu Version Info lsb_release -a ## Get Linux kernal info uname -a ## Get Computer name ech ...