博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 666 B. World Tour
阅读量:5757 次
发布时间:2019-06-18

本文共 5775 字,大约阅读时间需要 19 分钟。

 

题意:
给定一张边权均为1的有向图,求四个不同的点A,B,C,D,使得dis[A][B]+dis[B][C]+dis[C][D]尽可能大。
 
预处理能到B的前3远,C能到的前3远
枚举B、C
 
 
#include
#include
#include
#include
using namespace std;#define N 3001#define M 5001int n;int tot,front[N],to[M],nxt[M];int dis[N][N],f[N][3],g[N][3];void read(int &x){ x=0; char c=getchar(); while(!isdigit(c)) c=getchar(); while(isdigit(c)) { x=x*10+c-'0'; c=getchar(); }}void add(int u,int v){ to[++tot]=v; nxt[tot]=front[u]; front[u]=tot;}void bfs(int s){ int now,t; static queue
q; q.push(s); while(!q.empty()) { now=q.front(); q.pop(); for(int i=front[now];i;i=nxt[i]) { t=to[i]; if(dis[s][t]==-1) { dis[s][t]=dis[s][now]+1; q.push(t); } } }}void solve(){ int a,b,c,d; int len=0; for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) if(i!=j && dis[i][j]!=-1) for(int k=2;k>=0;--k) for(int l=2;l>=0;--l) if(f[i][k]!=i && f[i][k]!=j && g[j][l]!=i && g[j][l]!=j && f[i][k]!=g[j][l]) if(dis[i][j]+dis[f[i][k]][i]+dis[j][g[j][l]]>len) { len=dis[i][j]+dis[f[i][k]][i]+dis[j][g[j][l]]; a=f[i][k]; b=i; c=j; d=g[j][l]; } printf("%d %d %d %d",a,b,c,d);} void pre(){ for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) { if(dis[i][j]>dis[i][g[i][0]]) { g[i][2]=g[i][1]; g[i][1]=g[i][0]; g[i][0]=j; } else if(dis[i][j]>dis[i][g[i][1]]) { g[i][2]=g[i][1]; g[i][1]=j; } else if(dis[i][j]>dis[i][g[i][2]]) g[i][2]=j; } for(int i=1;i<=n;++i) for(int j=1;j<=n;++j) { if(dis[j][i]>dis[f[i][0]][i]) { f[i][2]=f[i][1]; f[i][1]=f[i][0]; f[i][0]=j; } else if(dis[j][i]>dis[f[i][1]][i]) { f[i][2]=f[i][1]; f[i][1]=j; } else if(dis[j][i]>dis[f[i][2]][i]) f[i][2]=j; }}int main(){ int m; read(n); read(m); int u,v; while(m--) { read(u); read(v); add(u,v); } memset(dis,-1,sizeof(dis)); for(int i=1;i<=n;++i) dis[i][i]=0; for(int i=1;i<=n;++i) bfs(i); pre(); solve();}

 

B. World Tour
time limit per test
5 seconds
memory limit per test
512 megabytes
input
standard input
output
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.

Input

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 ui andvi are not required to be distinct. Moreover, it can be several one-way roads between the same pair of cities.

Output

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.

Example
input
8 9 1 2 2 3 3 4 4 1 4 5 5 6 6 7 7 8 8 5
output
2 1 8 7
Note

Let d(x, y) be the shortest distance between cities x and y. Then in the example d(2, 1) = 3, d(1, 8) = 7, d(8, 7) = 3. The total distance equals 13.

 

 

转载于:https://www.cnblogs.com/TheRoadToTheGold/p/8419034.html

你可能感兴趣的文章
Chrome教程(二)使用ChromeDevTools命令菜单运行命令
查看>>
数据结构及算法基础--快速排序(Quick Sort)(二)优化问题
查看>>
你对position的了解到底有多少?
查看>>
随笔2013/2/19
查看>>
Windows Phone的Silverlight Toolkit 安装及其使用
查看>>
DBS:同学录
查看>>
Mysql备份系列(1)--备份方案总结性梳理
查看>>
[CareerCup] 1.6 Rotate Image 翻转图像
查看>>
jQuery中$.fn的用法示例介绍
查看>>
Python中的画图初体验
查看>>
Java程序员的日常 —— 响应式导航Demo
查看>>
objective-c内存管理基础
查看>>
sap关于价值串的说法(转载)
查看>>
Migration to S/4HANA
查看>>
sed 对目录进行操作
查看>>
什么是代码
查看>>
移动端开发单位——rem,动态使用
查看>>
系列文章目录
查看>>
SVG 新手入门
查看>>
手把手教你如何提高神经网络的性能
查看>>