URAL 1056 Computer Net

來源:互聯網
上載者:User

    對於樹上任意一點來講,相距最遠的點要麼是從父節點走過來的,要麼就是從兒子節點中走過來。因此可以先進行一次自下向上的dp,處理出從兒子節點過來的最遠點的距離。然後再進行一次自上而下的dp,同時傳入從父親節點過來時最遠點的距離,這樣和從兒子節點過來的最遠點的距離對比一下,就可以找到距這個點最遠的點的距離了。

INF = 0x3f3f3f3fN = 0g = [[]]dp = []ans = []res = 0def input():    global N, g    N = int(raw_input())    g = [[] for i in range(N + 1)]    for i in range(2, N + 1):        x = int(raw_input())        g[x].append(i), g[i].append(x)def bottom_up(x, px):    global dp, g    dp[x] = 0    for y in g[x]:        if y == px: continue        bottom_up(y, x)        dp[x] = max(dp[x], dp[y] + 1)def top_down(x, px, dis):    global dp, res, ans, g    t = max(dp[x], dis)    if t < res:        res = t        ans = [x]    elif t == res: ans.append(x)    opt = [dp[i] + 1 for i in g[x]]    for i in range(len(opt) - 2, -1, -1):        opt[i] = max(opt[i], opt[i + 1])    i = 0    t = dis    for y in g[x]:        i += 1        if y == px: continue        ndis = t        if i < len(opt) and opt[i] > ndis: ndis = opt[i]        top_down(y, x, ndis + 1)        t = max(t, dp[y] + 1) def process():    global N, dp, res, ans    dp = [-1 for i in range(N + 1)]    bottom_up(1, -1)    res = 0x3f3f3f3f    top_down(1, -1, 0)    ans.sort()    for i in ans: print i,    print#maininput()process()

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.