P2912 [USACO08OCT]牧場散步Pasture Walking

来源:http://www.cnblogs.com/huihao/archive/2017/07/10/7148065.html
-Advertisement-
Play Games

題目描述 The N cows (2 <= N <= 1,000) conveniently numbered 1..N are grazing among the N pastures also conveniently numbered 1..N. Most conveniently of al ...


題目描述

The N cows (2 <= N <= 1,000) conveniently numbered 1..N are grazing among the N pastures also conveniently numbered 1..N. Most conveniently of all, cow i is grazing in pasture i.

Some pairs of pastures are connected by one of N-1 bidirectional walkways that the cows can traverse. Walkway i connects pastures A_i and B_i (1 <= A_i <= N; 1 <= B_i <= N) and has a length of L_i (1 <= L_i <= 10,000).

The walkways are set up in such a way that between any two distinct pastures, there is exactly one path of walkways that travels between them. Thus, the walkways form a tree.

The cows are very social and wish to visit each other often. Ever in a hurry, they want you to help them schedule their visits by computing the lengths of the paths between 1 <= L_i <= 10,000 pairs of pastures (each pair given as a query p1,p2 (1 <= p1 <= N; 1 <= p2 <= N).

POINTS: 200

有N(2<=N<=1000)頭奶牛,編號為1到N,它們正在同樣編號為1到N的牧場上行走.為了方 便,我們假設編號為i的牛恰好在第i號牧場上.

有一些牧場間每兩個牧場用一條雙向道路相連,道路總共有N - 1條,奶牛可以在這些道路 上行走.第i條道路把第Ai個牧場和第Bi個牧場連了起來(1 <= A_i <= N; 1 <= B_i <= N),而它的長度 是 1 <= L_i <= 10,000.在任意兩個牧場間,有且僅有一條由若幹道路組成的路徑相連.也就是說,所有的道路構成了一棵樹.

奶牛們十分希望經常互相見面.它們十分著急,所以希望你幫助它們計劃它們的行程,你只 需要計算出Q(1 < Q < 1000)對點之間的路徑長度•每對點以一個詢問p1,p2 (1 <= p1 <= N; 1 <= p2 <= N). 的形式給出.

輸入輸出格式

輸入格式:

 

  • Line 1: Two space-separated integers: N and Q

  • Lines 2..N: Line i+1 contains three space-separated integers: A_i, B_i, and L_i

  • Lines N+1..N+Q: Each line contains two space-separated integers representing two distinct pastures between which the cows wish to travel: p1 and p2

 

輸出格式:

 

  • Lines 1..Q: Line i contains the length of the path between the two pastures in query i.

 

輸入輸出樣例

輸入樣例#1:
4 2 
2 1 2 
4 3 2 
1 4 3 
1 2 
3 2 
輸出樣例#1:
2 
7 

說明

Query 1: The walkway between pastures 1 and 2 has length 2.

Query 2: Travel through the walkway between pastures 3 and 4, then the one between 4 and 1, and finally the one between 1 and 2, for a total length of 7.

題解:

Tarjan:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1000+5;
int read()
{
    int x=0,f=1; char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-') f=-1; ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
int n,m,num1,num2;
int head1[maxn],head2[maxn],a[maxn][3],dis[maxn],father[maxn];
bool vis[maxn];
struct node
{
    int next,to,v;
}e[maxn*2],q[maxn*2];
void add1(int from,int to,int dist)
{
    e[++num1].next=head1[from];
    e[num1].to=to;
    e[num1].v=dist;
    head1[from]=num1;
}
void add2(int from,int to,int id)
{
    q[++num2].next=head2[from];
    q[num2].to=to;
    q[num2].v=id;
    head2[from]=num2;
}
int find(int x)
{
    if(x!=father[x]) father[x]=find(father[x]);
    return father[x];
}
void merge(int x,int y)
{
    int r1=find(x);
    int r2=find(y);
    father[r1]=r2;
}
void tarjan(int x)
{
    vis[x]=1;
    for(int i=head2[x];i;i=q[i].next)
    {
        int to=q[i].to,id=q[i].v;
        if(vis[to]) a[id][2]=find(to);
    }
    for(int i=head1[x];i;i=e[i].next)
    {
        int to=e[i].to;
        if(!vis[to])
        {
            dis[to]=dis[x]+e[i].v;
            tarjan(to);
            merge(to,x);
        }
    }
}
int main()
{
    n=read();m=read();
    for(int i=1;i<=n;i++) father[i]=i;
    for(int i=1;i<n;i++)
    {
        int x,y,z;
        x=read();y=read();z=read();
        add1(x,y,z);add1(y,x,z);
    }
    for(int i=1;i<=m;i++)
    {
        a[i][0]=read();a[i][1]=read();
        add2(a[i][0],a[i][1],i);
        add2(a[i][1],a[i][0],i);
    }
    tarjan(1);
    for(int i=1;i<=m;i++)
    printf("%d\n",dis[a[i][0]]+dis[a[i][1]]-2*dis[a[i][2]]);
    return 0;
}
    

倍增:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int n,q,cnt;
int deep[1001],head[1001],dis[1001],fa[1001][11];
bool vis[1001];
struct data{int to,next,v;}e[2001];
void ins(int u,int v,int w)
{e[++cnt].to=v;e[cnt].next=head[u];e[cnt].v=w;head[u]=cnt;}
void insert(int u,int v,int w)
{ins(u,v,w);ins(v,u,w);}
void dfs(int x)
{
    vis[x]=1;
    for(int i=1;i<=9;i++)
    {
        if(deep[x]<(1<<i))break;
        fa[x][i]=fa[fa[x][i-1]][i-1];
    }
    for(int i=head[x];i;i=e[i].next)
    {
        if(vis[e[i].to])continue;
        deep[e[i].to]=deep[x]+1;
        dis[e[i].to]=dis[x]+e[i].v;
        fa[e[i].to][0]=x;
        dfs(e[i].to);
    }
}
int lca(int x,int y)
{
    if(deep[x]<deep[y])swap(x,y);
    int d=deep[x]-deep[y];
    for(int i=0;i<=9;i++)
       if((1<<i)&d)x=fa[x][i];
    for(int i=9;i>=0;i--)
       if(fa[x][i]!=fa[y][i]) 
          {x=fa[x][i];y=fa[y][i];}
    if(x==y)return x;
    else return fa[x][0];
}
int main()
{
    scanf("%d%d",&n,&q);
    for(int i=1;i<n;i++)
    {
        int u,v,w;
        scanf("%d%d%d",&u,&v,&w);
        insert(u,v,w);
    }
    dfs(1);
    for(int i=1;i<=q;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        printf("%d\n",dis[x]+dis[y]-2*dis[lca(x,y)]);
    }
    return 0;
}

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • JdbcTemolate類的介紹 JdbcTemplate是Spring JDBC的核心類,封裝了常見的JDBC的用法,同時儘量避免常見的錯誤。該類簡化JDBC的操作,我們只需要書寫提供SQL的代碼和如何返回的結果的代碼。JdbcTemplate可以執行查詢、更新等操作、初始化對ResultSets ...
  • argparse 是一個用於解析 命令行選項,參數以及 子命令的庫 源碼來自 Lib/argparse.py 主要功能: 1、使得用戶編寫命令行變得簡單 2、針對程式需要的參數,argparse知道如何從sys.argv中解析這些參數 3、針對用戶給程式無效的參數,argparse可以自動生成幫助u ...
  • 最近項目中用到二維碼圖片識別,在python下二維碼識別,目前主要有三個模塊:zbar 、zbarlight、zxing。 1、三個模塊的用法: 2、使用對比 1、zbar和zbarlight內核一致,都是基於zbar的dll編譯載入的。 2、zbarlight使用比zbar更簡單,不過是在zbar ...
  • Eclipse 的控制台必須用GBK編碼。所以條件1和條件4必須同時滿足否則運行的還是亂碼。才能保證不是亂碼。 條件1,Window | Preferences | Workspace | Text fileencoding | GBK編碼。這樣定義的是整個工作區間的編碼。這樣就把整個工作空間的編碼 ...
  • 1.定義 模塊:本質就是.py結尾的文件(邏輯上組織python代碼)模塊的本質就是實現一個功能 文件名就是模塊名稱 包: 一個有__init__.py的文件夾;用來存放模塊文件2.導入模塊 import 模塊名 form 模塊名 import * from 模塊名 import 模塊名 as 新名... ...
  • 接著前兩篇學習筆記,這篇主要介紹佈局管理器和對話框兩部分內容。 一、佈局管理器 先拿一個小例子來引出話題,就按照我們隨意的添加兩個按鈕來說,會產生什麼樣的效果,看執行結果。 執行結果: 從運行程式中,只看到了第二個按鈕B。 原因是每個組件,在容器中都有一個具體的位置和大小,想在容器中排列組件時很難確 ...
  • 一 概述 1.Comparable與Comparator使用背景 數值型數據(byte int short long float double)天生可對比大小,可排序,String實現了Comparable介面也可以對比大小與排序,而自定義類多種多樣,沒有一個共有的可以用作排序的指標,因此需要在自定 ...
  • 線程概述 首先先理解下什麼是進程和線程? 進程: 進程是指一個正在運行中的程式。 每個進程執行都有一個或多個執行順序,這個順序就是一個控制單元(或者叫一個執行路徑),控製程序的運行。 舉例: 大家使用過的迅雷下載,當你啟動迅雷開始下載後,你可以選擇下載單個或者同時下載多個文件。每一個下載任務就是一個 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...