Ultraviolet A 10821-constructing BST (BSF)

Source: Internet
Author: User

Link to the question: Ultraviolet A 10821-constructing BST

Given the number of nodes and the height of the tree, find the smallest insert sequence in the lexicographically order so that the generated BST height is H.

Solution: determine the number of left and right Subtrees Based on H. Because the Lexicographic Order is required to be as small as possible, the number of nodes in the right subtree should be as large as possible.

#include <cstdio>#include <cstring>#include <algorithm>using namespace std;int N, H;void solve (int l, int r, int h) {    if (l > r)        return;    int mid = max(r - (1<

Ultraviolet A 10821-constructing BST (BSF)

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.