Codeforces Round #349 (Div. 1) B. World Tour (暴力搜索)

参考:http://blog.csdn.net/u014258433/article/details/51317144
http://blog.csdn.net/squee_spoon/article/details/51287386
题目:http://codeforces.com/contest/667/problem/D



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 uiand vi 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.



题目大意:给你一个有向有环图,求四点 a b c d使得a 到 b b 到 c c 到 d的距离最大。


分析:n次bfs求的任意两点之间的最短路,然后枚举中间的两个点b c更新答案。

    #include <map>  
    #include <cstdio>  
    #include <vector>  
    #include <cstring>  
    #include <iostream>  
    using namespace std;  
    map <long long,int> came[5001],visit[5001];   
    vector<int> b[5001];  
    int n,m,x,y,ans,val[5001],z[5001],Ans[4],dis[3001][3001];  
    bool jud[5001];  
    void deal(int x,int y,int k)  
    {  
        dis[x][y] = k;  
        if(k <= 0) return;  
        came[x][k*n+y] = y;  
        while(came[x].size() > 3) came[x].erase(came[x].begin());   
        visit[y][k*n+x] = x;  
        while(visit[y].size() > 3) visit[y].erase(visit[y].begin());   
    }  
    int main()  
    {  
        cin.sync_with_stdio(false);  
        cin>>n>>m;  
        for(int i = 1;i <= m;i++)  
        {  
            cin>>x>>y;  
            b[x].push_back(y);  
        }  
        for(int i = 1;i <= n;i++)  
        {  
            int s = 1,t = 2;  
            memset(jud,0,sizeof(jud));  
            for(int k = 1;k <= n;k++) val[k] = k == i ? 0:-10000000;  
            z[s] = i;  
            jud[i] = true;  
            while(s != t)  
            {  
                int u = z[s];  
                for(int v:b[u])  
                 if(!jud[v])  
                 {  
                    jud[v] = true;  
                    val[v] = val[u] + 1;  
                    z[t++] = v;  
                 }  
                s++;  
            }  
            for(int j = 1;j <= n;j++) deal(i,j,val[j]);  
        }  
        for(int i = 1;i <= n;i++)  
         for(int j = 1;j <= n;j++)  
          if(i != j)  
          {  
            for(auto u:visit[i])  
             if(i != u.second && j != u.second)  
              for(auto v:came[j])  
               if(i != v.second && j != v.second && u.second != v.second)  
                if(dis[i][j] + dis[u.second][i] + dis[j][v.second] > ans)  
                {  
                    ans = dis[i][j] + dis[u.second][i] + dis[j][v.second];  
                    Ans[0] = u.second,Ans[1] = i,Ans[2] = j,Ans[3] = v.second;  
                }  
          }  
        for(int i = 0;i < 4;i++) cout<<Ans[i]<<" ";  
     }   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值