Ultraviolet A 10943-how do you add? (Combination number formula + recurrence)

Source: Internet
Author: User

 

 

Ultraviolet A 10943-how do you add? (Combination number formula + recurrence)

 

 

Question:
Given a number N, the number of shard K is decomposed, and the number of combinations can be repeated (n <= 100)


Analysis:
Abstract The question into N identical balls by combining mathematics, put them into k different boxes, and allow the box to be empty.
Then we can use the partition method ------> ans = C (n + M-1, M-1)
Partition Method --> BD
And then according to the nature of the number of combinations can be recursive (this data range is relatively small) ----> C (a, B) = C (A-1, B) + C (A-1, b-1 );
After preprocessing, the corresponding output can be obtained.

 

Ultraviolet A 10943-how do you add? (Combination number formula + recurrence)

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.