zoukankan      html  css  js  c++  java
  • poj 1985 Cow Marathon

    题目连接

    http://poj.org/problem?id=1985   

    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

    * 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

    树的直径。。

    #include<algorithm>
    #include<iostream>
    #include<cstdlib>
    #include<cstring>
    #include<cstdio>
    #include<vector>
    #include<queue>
    #include<map>
    using std::map;
    using std::min;
    using std::find;
    using std::pair;
    using std::queue;
    using std::vector;
    using std::multimap;
    #define pb(e) push_back(e)
    #define sz(c) (int)(c).size()
    #define mp(a, b) make_pair(a, b)
    #define all(c) (c).begin(), (c).end()
    #define iter(c) __typeof((c).begin())
    #define cls(arr, val) memset(arr, val, sizeof(arr))
    #define cpresent(c, e) (find(all(c), (e)) != (c).end())
    #define rep(i, n) for(int i = 0; i < (int)n; i++)
    #define tr(c, i) for(iter(c) i = (c).begin(); i != (c).end(); ++i)
    const int N = 50010;
    const int INF = 0x3f3f3f3f;
    struct work {
        struct edge { int to, w, next; }G[N << 1];
        int tot, head[N], dist[N];
        inline void init() {
            tot = 0, cls(head, -1);
        }
        inline void add_edge(int u, int v, int w) {
            G[tot] = (edge){ v, w, head[u] }; head[u] = tot++;
            G[tot] = (edge){ u, w, head[v] }; head[v] = tot++;
        }
        inline int bfs(int s) {
            int id = s, max_dist = 0;
            cls(dist, -1);
            queue<int> q;
            q.push(s);
            dist[s] = 0;
            while(!q.empty()) {
                int u = q.front(); q.pop();
                if(dist[u] > max_dist) {
                    max_dist = dist[id = u];
                }
                for(int i = head[u]; ~i; i = G[i].next) {
                    edge &e = G[i];
                    if(-1 == dist[e.to]) {
                        dist[e.to] = dist[u] + e.w;
                        q.push(e.to);
                    }
                }
            }
            return id;
        }
        inline void solve(int m) {
            char ch;
            int u, v, w;
            cls(head, -1);
            while(m--) {
                scanf("%d %d %d %c", &u, &v, &w, &ch);
                add_edge(u, v, w);
            }
            printf("%d
    ", dist[bfs(bfs(u))]);
        }
    }go;
    int main() {
    #ifdef LOCAL
        freopen("in.txt", "r", stdin);
        freopen("out.txt", "w+", stdout);
    #endif
        int n, m;
        while(~scanf("%d %d", &n, &m)) {
            go.solve(m);
        }
        return 0;
    }
  • 相关阅读:
    docker容器网络查看
    资源模型、资源管理
    kubectl命令设置在元集群上
    K8S容器网络
    Kubernetes部署Prometheus+Grafana以及HPA实验测试
    Shell 脚本之 MySQL 一键安装及基本配置(几分钟搞定)
    安装 Flannel 报错:network plugin is not ready: cni config uninitialized
    uniapp h5页面引入企业微信js-sdk
    判断IP地址及闰年,并写出相关测试用例
    第一个自动化测试案例 java+selenium
  • 原文地址:https://www.cnblogs.com/GadyPu/p/4773241.html
Copyright © 2011-2022 走看看