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

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>
            亚洲一区二区在线看| 亚洲日本成人女熟在线观看| 欧美国产日本| 久久国产色av| 欧美日韩国产123| 模特精品在线| 午夜精品免费在线| 日韩亚洲不卡在线| 免费成人小视频| 久久综合久久美利坚合众国| 国产精品任我爽爆在线播放 | 欧美精品三级| 亚洲视频一二区| 欧美1区2区3区| 美日韩精品视频| 精品va天堂亚洲国产| 小黄鸭精品aⅴ导航网站入口| 一区二区亚洲欧洲国产日韩| 亚洲欧美日韩国产一区二区| 亚洲欧美在线磁力| 久久久午夜精品| 噜噜噜在线观看免费视频日韩| 欧美成人免费在线| 欧美国产一区二区| 亚洲国产日韩欧美在线99| 亚洲人线精品午夜| 亚洲精品国产精品乱码不99| 免费人成网站在线观看欧美高清| 亚洲欧美激情一区二区| 欧美性久久久| 午夜激情综合网| 欧美中文日韩| 好吊色欧美一区二区三区四区| 亚洲欧洲一区二区在线观看| 一区二区三区|亚洲午夜| 欧美精品在线一区二区| 日韩视频免费看| 亚洲欧美综合国产精品一区| 国产午夜精品全部视频播放 | 久久精品一区二区三区中文字幕| 欧美国产日韩一区二区| 亚洲精品国产日韩| 亚洲一区三区视频在线观看| 免费短视频成人日韩| 亚洲国产精品久久久久婷婷老年| 国产婷婷精品| 久久深夜福利| 亚洲免费黄色| 久久国产精品亚洲77777| 欧美日韩免费观看一区三区| 欧美成人一区二区在线| 亚洲伦伦在线| 国产乱码精品1区2区3区| 久久久一区二区| 亚洲人成亚洲人成在线观看| 在线观看一区| 欧美深夜福利| 久久久综合网| 99精品福利视频| 99热精品在线观看| 国产三级欧美三级| 亚洲一区美女视频在线观看免费| 亚洲一卡二卡三卡四卡五卡| 国产一区二区三区在线免费观看| 亚洲一级电影| 欧美韩国一区| 欧美一级视频精品观看| 亚洲青色在线| 国产综合香蕉五月婷在线| 欧美国内亚洲| 久久精品91| 亚洲特级片在线| 亚洲第一主播视频| 久久久精品一区二区三区| 一区二区三区你懂的| 亚洲高清激情| 国产一区二区精品久久91| 欧美在线日韩在线| 国产精品99久久99久久久二8| 亚洲专区一区二区三区| 亚洲国产老妈| 国产视频一区在线观看| 久久精品综合一区| 亚洲一区二区三区激情| 99视频精品在线| 亚洲国产精品一区二区第四页av| 99国产精品99久久久久久粉嫩 | 免费h精品视频在线播放| 午夜精品久久久久久久久久久| 久久成人久久爱| 亚洲综合视频在线| 宅男精品视频| 日韩视频精品| 国产精品欧美日韩一区| 欧美日韩国产综合久久| 模特精品在线| 久久在线视频在线| 欧美中文字幕不卡| 欧美一区二区三区视频| 亚洲欧美一区二区激情| 女人色偷偷aa久久天堂| 一区二区久久| 99亚洲伊人久久精品影院红桃| 国产精品伦子伦免费视频| 欧美日韩在线看| 欧美日韩精品免费观看| 欧美日韩免费高清一区色橹橹| 亚洲女ⅴideoshd黑人| 美日韩精品视频| 中文国产成人精品| 中日韩美女免费视频网站在线观看 | 一本大道久久a久久精二百| 欧美国产综合| 亚洲高清视频的网址| 亚洲国产欧美另类丝袜| 亚洲激情校园春色| 日韩视频在线一区| 亚洲一区二区成人| 亚洲欧美激情四射在线日 | 一区二区三区蜜桃网| 亚洲美女在线视频| 久久米奇亚洲| 亚洲香蕉在线观看| 午夜在线播放视频欧美| 久久成人免费| 欧美www在线| 欧美一区视频在线| 久久亚洲精品网站| 亚洲电影视频在线| 亚洲免费观看在线观看| 亚洲欧美日本精品| 久久精选视频| 欧美日本免费一区二区三区| 国产精品久久国产愉拍| 欧美精品福利视频| 国产精品免费一区豆花| 国内揄拍国内精品久久| 亚洲精品视频一区| 亚洲欧美另类中文字幕| 久久综合久久综合九色| 亚洲欧洲在线一区| 亚洲欧美精品suv| 老司机精品视频网站| 欧美午夜宅男影院在线观看| 欧美黄色大片网站| 国产精品天美传媒入口| 亚洲国产精品福利| 午夜在线观看欧美| 欧美激情久久久| 亚洲欧美日韩视频二区| 美日韩丰满少妇在线观看| 国产精品久久久久久久久久免费 | 久久久久五月天| 亚洲国产三级| 欧美一区二区三区视频| 欧美呦呦网站| 欧美日韩色婷婷| 在线高清一区| 久久激情视频久久| 亚洲理论在线| 久久午夜电影| 国产视频自拍一区| 亚洲一区二区三| 亚洲国产经典视频| 欧美一区日韩一区| 国产精品爱啪在线线免费观看| 国产精品theporn| 亚洲韩国精品一区| 久久精品视频免费| 免费不卡视频| 久久成人在线| 国产精品免费看| 亚洲天天影视| 亚洲三级电影在线观看| 男男成人高潮片免费网站| 国产永久精品大片wwwapp| 亚久久调教视频| 亚洲视频精品| 欧美日韩在线视频一区| 国产欧美日韩在线| 亚洲欧美网站| 亚洲一区二区在线免费观看视频| 久久不射网站| 国产又爽又黄的激情精品视频 | 亚洲看片网站| 欧美成人综合一区| 久久久水蜜桃av免费网站| 狠狠色综合色区| 久久亚洲风情| 久久久av水蜜桃| 在线成人激情黄色| 欧美超级免费视 在线| 看片网站欧美日韩| 亚洲人成啪啪网站| 亚洲国产精品悠悠久久琪琪 | 亚洲一区免费在线观看| 欧美日韩三级| 亚洲欧美精品在线| 午夜在线视频观看日韩17c| 国产日韩一区二区三区在线播放 |