[U]3.2.2 Stringsobits 组合,递推
很快就发现了这题的递推特性。简直是赤裸裸啊~ 定义一个数组( [串长度][串中'1'的个数]=种类数 )这就是一个排列啊~ 用一个简单的递推方程求解出来C(n,i)=C(n-1,i)C(n-1,i-1); 然后从首位n开始判断,∑C[n-1][i] ( i∈[0,l] ) 若和大于等于当前的第k个数则说明
很快就发现了这题的递推特性。简直是赤裸裸啊~
定义一个数组( [串长度][串中'1'的个数]=种类数 )这就是一个排列啊~
用一个简单的递推方程求解出来C(n,i)=C(n-1,i)+C(n-1,i-1);
然后从首位n开始判断,∑C[n-1][i] ( i∈[0,l] )
若和大于等于当前的第k个数则说明,右边的n-1位足够提供题中所需的数量,因此当前位为'0';
若右边n-1位不能提供所需的数量,则当前位为'1',右边必须向n借一位,这样k-=cnt;把右边的和减去。提供的l--;
蛮有意思的一题:
Code:
/* ID:bysen LANG:C++ PROG:kimbits */ #include<stdio.h> using namespace std; int C[32][32]; int main() { freopen( "kimbits.in","r",stdin ); freopen( "kimbits.out","w",stdout ); int n,l; long long k; scanf( "%d %d %lld",&n,&l,&k ); for( int i=0;i=1;i-- ) { int cnt=0; for( int j=0;j<br> <br> </stdio.h>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Redis is a high-performance key-value database. Through its fast data storage and access capabilities, it is widely used in the process of service registration and discovery. Service registration and discovery is a very important process in distributed systems. When we run multiple services on a machine, we need a way for clients to discover these services and how to interact with them. In a complete distributed system, there may be dozens of services running, and manual configuration has become unfeasible. At this time, we need to use service registration and discovery.

Hello everyone, today I will share with my friends the specific steps of how to combine two graphics in PPT. If you follow these steps, you will learn the operation step by step, and you can draw inferences in the future. The details of the steps are below. Friends, come and take a serious look! 1. First, open a PPT document on your computer, and then create a new PPT slide (as shown in the picture below). 2. Next, find [Shape] in the upper menu bar item [Insert], and select the shape to be imported in the drop-down box of the shape (as shown in the red circle in the figure below). 3. Use the insert function of PPT to insert the triangle and circle shapes into the PPT in sequence, and adjust the size and position of the shapes (as shown by the red arrow in the picture below). 4

In C++, inheritance is used to establish "is-a" relationships and enforce interface consistency. And composition is used to establish "contains-one" relationships, providing flexibility. Inheritance: Used when the subclass has an "is-a" relationship with the base class, such as vehicle and car. Combination: Used when the container class and the component class have a "contains-one" relationship. For example, the characters in the game contain weapons, defense, and health values.

The combinatorial problem in Python refers to how to generate all possible combinations of a set of elements given it. This is a problem often encountered in many computer science applications. There are various ways to solve this problem in Python, but incorrect implementation can lead to combination errors. This article will explain how to solve the problem of combination errors in Python. Using recursive functions In Python, using recursive functions is often one of the most common ways to implement combinatorial problems. A recursive function is a function that calls itself within itself

Use the filepath.Join function to combine multiple path fragments into one path. In the standard library of the Go language, there is a package called filepath that provides some functions for operating file paths. Among them, the Join function is a very useful function that can combine multiple path fragments into one path. The filepath.Join function is defined as follows: funcJoin(elem...string) The stringJoin function receives a variable parameter,

A robotics laboratory BEAR. Image source: Boston University According to a report on the British "New Scientist" magazine website on August 29, a robotic laboratory in the United States has discovered the toughest structure known so far. The laboratory can conduct 50 experiments a day without human supervision. , fabricate and test the mechanical structure. The latest research is expected to accelerate the discovery of new materials, and related papers have been submitted to a preprint website. In this latest study, Boston University researchers said they used an autonomous robotic laboratory called the Bayesian Experimental Autonomous Researcher (BEAR) to discover the most energy-absorbing material structure known to date. BEAR consists of five 3D printers, a set of scales, a testing machine, a robotic arm and computer vision for moving samples

How to write an algorithm for solving permutations and combinations in Python? Introduction: In mathematics and computer science, permutation and combination is a common mathematical concept that can help us solve many practical problems. In this article, I will introduce how to use Python to write algorithms to solve permutation and combination problems, and provide specific code examples. 1. Definition of permutations and combinations Before starting to write algorithms, let us first understand the definitions of permutations and combinations. Arrangement: Arrangement is to select some elements from a given set of elements to arrange and combine them to form different sequences.

With the development of microservice architecture, service registration and discovery are becoming more and more important. For the Go language, due to its high efficiency and excellent concurrency performance, it is becoming more and more popular as a development language for microservices. This article will introduce how to register and discover services in Go language. What is service registration and discovery? Service registration and discovery means that the service provider registers its service to the service registration center, and the service consumer obtains the available service list from the registration center and calls the corresponding service. The service registry can be a separate process or a separate
