青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

posts - 18,  comments - 5,  trackbacks - 0

一、題目描述

Cerror is the mayor of city HangZhou. As you may know, the traffic system of this city is so terrible, that there are traffic jams everywhere. Now, Cerror finds out that the main reason of them is the poor design of the roads distribution, and he want to change this situation.

In order to achieve this project, he divide the city up to N regions which can be viewed as separate points. He thinks that the best design is the one that connect all region with shortest road, and he is asking you to check some of his designs.

Now, he gives you an acyclic graph representing his road design, you need to find out the shortest path to connect some group of three regions.

Input

The input contains multiple test cases! In each case, the first line contian a interger N (1 < N < 50000), indicating the number of regions, which are indexed from 0 to N-1. In each of the following N-1 lines, there are three interger Ai, Bi, Li (1 < Li < 100) indicating there's a road with length Li between region Ai and region Bi. Then an interger Q (1 < Q < 70000), the number of group of regions you need to check. Then in each of the following Q lines, there are three interger Xi, Yi, Zi, indicating the indices of the three regions to be checked.

Process to the end of file.

Output

Q lines for each test case. In each line output an interger indicating the minimum length of path to connect the three regions.

Output a blank line between each test cases.

Sample Input

4
0 1 1
0 2 1
0 3 1
2
1 2 3
0 1 2
5
0 1 1
0 2 1
1 3 1
1 4 1
2
0 1 2
1 0 3

Sample Output

3
2
2
2


二、分析
      用RMQ解決的LCA問題,詳細算法:LCA問題。
三、代碼

  1#include<iostream>
  2#include<cmath>
  3#include<list>
  4using namespace std;
  5int n, q;
  6struct node
  7{
  8    int lab, dis;
  9    void init(int l, int d)
 10    {
 11        lab = l; dis = d;
 12    }

 13}
;
 14int v1, v2, v3, len;
 15list<node> g[50001];
 16int ei, e[100002], r[50001], l[100002], d[50001];
 17bool visit[50001];
 18int pow2[18];
 19int mmin[18][100002];
 20void dfs(int u, int dep)
 21{
 22    e[++ei] = u; l[ei] = dep;
 23    if(visit[u]) return;
 24    visit[u] = true;
 25    list<node>::iterator it = g[u].begin();
 26    while(it != g[u].end())
 27    {
 28        int v = it->lab, len = it->dis;
 29        if(!visit[v])
 30        {
 31            d[v] = min(d[v], d[u] + len);
 32            dfs(v, dep+1);
 33            e[++ei] = u; l[ei] = dep;
 34            
 35        }

 36        it++;
 37    }

 38}

 39void init_rmq()
 40{
 41    ei = 0;
 42    memset(visit, 0sizeof(visit));
 43    d[0= 0;
 44    dfs(01);
 45    memset(r, -1sizeof(r));
 46    for(int i=1; i<=ei; i++)
 47        if(r[e[i]] == -1)
 48            r[e[i]] = i;
 49    memset(mmin, 0sizeof(mmin));
 50    for(int i=1; i<=ei; i++)
 51        mmin[0][i] = i;
 52    int t1 = (int)(log((double)ei) / log(2.0));
 53    for(int i=1; i<=t1; i++)
 54        for(int j=1; j + pow2[i] - 1<=ei; j++)
 55        {
 56            int a = mmin[i-1][j], b = mmin[i-1][j+pow2[i-1]];
 57            if(l[a] <= l[b])
 58                mmin[i][j] = a;
 59            else
 60                mmin[i][j] = b;
 61        }

 62}

 63int rmq(int u, int v)
 64{
 65    int i = r[u], j = r[v];
 66    if(i > j) swap(i, j);
 67    int t1 = (int)(log((double)j - i + 1/ log(2.0));
 68    int a = mmin[t1][i], b = mmin[t1][j - pow2[t1] + 1];
 69    if(l[a] <= l[b])
 70        return e[a];
 71    else
 72        return e[b];
 73}

 74int main()
 75{
 76    for(int i=0; i<18; i++)
 77        pow2[i] = 1 << i;
 78    bool flag = false;
 79    while(scanf("%d"&n) != EOF)
 80    {
 81        if(flag) printf("\n");
 82        flag = true;
 83        for(int i=0; i<n; i++)
 84        {
 85            g[i].clear();
 86            d[i] = INT_MAX;
 87        }

 88        for(int i=0; i<n-1; i++)
 89        {
 90            scanf("%d%d%d"&v1, &v2, &len);
 91            node n1; n1.init(v2, len);
 92            g[v1].push_back(n1);
 93            node n2; n2.init(v1, len);
 94            g[v2].push_back(n2);
 95        }

 96        init_rmq();
 97        scanf("%d"&q);
 98        while(q--)
 99        {
100            int res = INT_MAX;
101            scanf("%d%d%d"&v1, &v2, &v3);
102            int temp = 0;
103            int lca1 = rmq(v1, v2);
104            temp = d[v1] + d[v2] - 2*d[lca1];
105            int lca2 = rmq(lca1, v3);
106            temp += d[lca1] + d[v3] - 2*d[lca2];
107            res = min(res, temp);
108            temp = 0;
109            lca1 = rmq(v1, v3);
110            temp = d[v1] + d[v3] - 2*d[lca1];
111            lca2 = rmq(lca1, v2);
112            temp += d[v2] + d[lca1] - 2*d[lca2];
113            res = min(res, temp);
114            temp = 0;
115            lca1 = rmq(v2, v3);
116            temp = d[v2] + d[v3] - 2*d[lca1];
117            lca2 = rmq(lca1, v1);
118            temp += d[v1] + d[lca1] - 2*d[lca2];
119            res = min(res, temp);
120            printf("%d\n", res);
121        }

122    }

123}
posted on 2009-07-02 20:55 Icyflame 閱讀(1298) 評論(0)  編輯 收藏 引用 所屬分類: 解題報告
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            亚洲午夜视频在线| 一区二区三区精品视频| 欧美在线一二三| 亚洲欧美资源在线| 国产丝袜一区二区三区| 久久婷婷国产麻豆91天堂| 欧美在线视屏| 亚洲欧洲日产国产综合网| 亚洲人成在线免费观看| 欧美精品在线极品| 午夜伦理片一区| 欧美资源在线观看| 亚洲精选在线| 亚洲一区视频| 亚洲国产成人porn| 亚洲九九精品| 国产视频亚洲精品| 亚洲国产第一页| 国产精品乱码一区二三区小蝌蚪| 久久99在线观看| 欧美国产另类| 西西裸体人体做爰大胆久久久| 久久精品欧美| 亚洲小说欧美另类社区| 久久久国产午夜精品| 日韩视频在线免费观看| 亚洲欧美日韩精品| 亚洲精品国产精品乱码不99按摩| 在线亚洲欧美专区二区| 有码中文亚洲精品| 亚洲小视频在线观看| 亚洲国产精品成人久久综合一区| 国产精品99久久久久久久女警 | 欧美日韩高清在线一区| 午夜精品亚洲一区二区三区嫩草| 久久精品在线观看| 亚洲一区二区高清| 久久综合精品一区| 欧美在线免费观看| 欧美色网一区二区| 亚洲成人在线视频播放| 国产日韩一区欧美| 99在线热播精品免费| 91久久亚洲| 久久久国产精品一区| 欧美诱惑福利视频| 欧美亚洲第一页| 亚洲伦理在线观看| 亚洲福利视频三区| 久久久久久一区二区| 欧美一区二区在线播放| 欧美日韩一区二区三区| 亚洲高清久久久| 亚洲国产欧洲综合997久久| 欧美一区=区| 久久成人一区二区| 国产精品亚洲综合一区在线观看| 日韩视频不卡中文| 99视频日韩| 欧美精品激情blacked18| 蜜桃av久久久亚洲精品| 激情久久久久| 久久人体大胆视频| 免费观看日韩| 亚洲人成人99网站| 欧美成人在线影院| 欧美激情久久久久久| 91久久精品日日躁夜夜躁国产| 久久婷婷国产麻豆91天堂| 久久一区欧美| 亚洲大片一区二区三区| 久久一区精品| 亚洲激情自拍| 一本一道久久综合狠狠老精东影业 | 老鸭窝91久久精品色噜噜导演| 国产婷婷色综合av蜜臀av| 西西人体一区二区| 久久精品一二三| 在线播放国产一区中文字幕剧情欧美| 久久成人精品电影| 欧美激情久久久久| 99精品免费视频| 国产精品久久网| 欧美一区2区三区4区公司二百 | 亚洲电影第三页| 欧美wwwwww| 一区二区三区**美女毛片| 亚洲欧美日韩在线播放| 黄色成人在线网站| 欧美成人午夜影院| 亚洲香蕉网站| 久久米奇亚洲| 亚洲最新在线视频| 国产欧美日韩一区二区三区在线观看 | 亚洲网站视频| 久久综合成人精品亚洲另类欧美| 亚洲国产精品一区二区第一页| 欧美激情一区二区在线 | 欧美大片免费| 亚洲欧美日韩一区二区在线| 国内精品久久久| 欧美紧缚bdsm在线视频| 亚洲欧美视频一区| 亚洲第一在线视频| 欧美一区二区三区播放老司机| 亚洲国产清纯| 国产精品久久| 欧美不卡视频| 欧美一区二区在线播放| 亚洲福利一区| 久久久久免费视频| 亚洲一区二区三区激情| 亚洲高清不卡| 国产亚洲精品资源在线26u| 欧美激情影院| 久久久99久久精品女同性| 在线亚洲欧美专区二区| 亚洲高清不卡| 久久综合给合| 欧美一区视频在线| 亚洲图片欧洲图片av| 在线精品国产成人综合| 国产精品拍天天在线| 欧美精品三级| 美女精品国产| 久久久综合香蕉尹人综合网| 亚洲免费在线精品一区| 日韩午夜精品视频| 亚洲国产一成人久久精品| 久久亚洲精品欧美| 久久精品在线播放| 欧美一区二区精品久久911| 亚洲天堂成人| 一区二区免费在线播放| 91久久在线| 亚洲人成人99网站| 亚洲电影免费观看高清| 黄色亚洲精品| 激情综合色综合久久综合| 国产揄拍国内精品对白| 国产精品一区视频| 国产精品入口麻豆原神| 国产精品久久久久久久久果冻传媒 | 欧美小视频在线| 国产精品第2页| 国产精品久久久久av免费| 国产精品久久久久秋霞鲁丝| 欧美手机在线视频| 国产精品免费观看在线| 国产精品免费看久久久香蕉| 欧美视频免费在线| 国产精品蜜臀在线观看| 国产嫩草一区二区三区在线观看| 国产精品美女| 国产亚洲网站| 亚洲大胆美女视频| 亚洲免费观看视频| 亚洲一区尤物| 久久精品1区| 欧美电影美腿模特1979在线看| 欧美风情在线观看| 亚洲精品久久视频| 一区二区三区四区五区精品视频| 亚洲专区一区| 久久久综合激的五月天| 欧美高清在线播放| 国产精品成人免费精品自在线观看| 国产精品三上| 一区在线电影| 亚洲一级高清| 久久香蕉精品| 亚洲美女精品一区| 午夜在线成人av| 欧美激情成人在线| 国产精品自拍小视频| 136国产福利精品导航| 在线视频精品一| 久久九九国产精品怡红院| 亚洲电影在线播放| 亚洲综合好骚| 欧美大片在线看免费观看| 国产精品香蕉在线观看| 亚洲国产1区| 午夜在线观看免费一区| 亚洲福利av| 欧美一区二区成人| 欧美日韩视频第一区| 好看的日韩视频| 亚洲欧美日韩专区| 欧美国产日本韩| 欧美一级片在线播放| 欧美日韩的一区二区| 狠狠综合久久av一区二区老牛| 一区二区三区欧美成人| 免费成人在线观看视频| 亚洲综合视频1区| 欧美精品v日韩精品v国产精品 | 国产日韩精品一区| 在线视频亚洲欧美| 欧美黄色影院|