poj1741: Tree dp (VIP)

Source: Internet
Author: User

The main topic: given the tree of n nodes, the tree has the edge, now given a point U and V,dis (U,v) represents the closest distance between the U and V nodes, ask Dis (u,v) <=k the UV logarithm, n <= 10,000, K variable, weight <=1000.

Orz look at the code to understand, first find out the center of the tree (or centroid?) ) to avoid the tree becoming a chain that makes the algorithm degenerate. Turn a tree without roots into a tree. Then find out the distance from the root node, can calculate the TMP, D (u) +d (v) <=k logarithm, can do O (n) statistics, and then calculate the same subtree in the repetition of the TMP2, then through the root node is TMP-TMP2.

In this case, the recursive calculation will be OK, the complexity will not count, but it seems to be better than O (n^2)

http://blog.csdn.net/woshi250hua/article/details/7723400

poj1741: Tree dp (VIP)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.