Poj 1985 Cow Marathon (나무의 지름

Cow Marathon
Description
After hearing about the epidemic of obesity in the USA, Farmer John wants his cows to get more exercise, so he has committed to create a bovine marathon for his cows to run. The marathon route will include a pair of farms and a path comprised of a sequence of roads between them. Since FJ wants the cows to get as much exercise as possible he wants to find the two farms on his map that are the farthest apart from each other (distance being measured in terms of total length of road on the path between the two farms). Help him determine the distances between this farthest pair of farms. Input
Input
  • Lines 1…..: Same input format as “Navigation Nightmare”.

  • Output
  • Line 1: An integer giving the distance between the farthest pair of farms.

  • Sample Input
    7 6
    1 6 13 E
    6 3 9 E
    3 5 7 S
    4 1 3 N
    2 4 20 W
    4 7 2 S

    Sample Output
    52

    Hint
    The longest marathon runs from farm 2 via roads 4, 1, 6 and 3 to farm 5 and is of length 20+3+13+9+7=52.
    제목
    N 개의 점 M 개의 변 은 모든 변 에 가중치 가 있 습 니 다. 두 가 지 를 찾 아 이 두 점 사이 의 모든 변 의 가중치 와 가장 길 게 합 니 다.
    문제 풀이:
    누 드 트 리 의 직경 ZZ 는 뒤에 있 는 방향 을 반나절 동안 고 민 했 습 니 다. 사실 TAT vector 저장 도 를 사용 하지 않 아 도 정말 편리 합 니 다. 하하 하 \ # \ # AC 코드
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    using namespace std;
    
    #define LL long long
    #define CLR(a, b) memset(a, (b), sizeof(a))
    
    const int N = 5e5;
    struct node {
        int t, val;
    };
    vector v[N];
    bool vis[N];
    int dis[N];
    int ans, res;
    
    void bfs(int x)
    {
        CLR(dis,0);
        CLR(vis,false);
        res = 0;
        queue<int> q;
        q.push(x);
        vis[x] = true;
        while(!q.empty()) {
            int p = q.front();
            q.pop();
            if(dis[p] > ans) {
                ans = dis[p];
                res = p;
            }
            for(int i = 0;i < v[p].size(); i++) {
                node x = v[p][i];
                if(!vis[x.t]) {
                    vis[x.t] = true;
                    dis[x.t] = dis[p] + x.val;
                    q.push(x.t);
                }
            }
        }
    }
    int main()
    {
        //ios::sync_with_stdio(false);
        int n, m;
        while(~scanf("%d%d",&n,&m)) {
            for(int i = 0; i<= n; i++) v[i].clear();
            int x, y, z; char c;
            for(int i = 0;i < m; i++) {
                scanf("%d%d%d %c",&x,&y,&z,&c);
                v[x].push_back((node){y,z});
                v[y].push_back((node){x,z});
            }
            ans = 0;
            bfs(1);
            ans = 0;
            bfs(res);
            printf("%d
    "
    ,ans); } return 0; }

    좋은 웹페이지 즐겨찾기