


Codeforces Round #258 (Div. 2)Devu and Flowers Inclusion and Exclusion Principle_html/css_WEB-ITnose
Title: Codeforces Round #258 (Div. 2) Devu and Flowers Question meaning: n boxes, the i-th box has fi flowers, the flowers in each box are exactly the same, and the flowers in different boxes are different, find the following The number of options for removing s flowers from n boxes. n<=20, s<=1e14, fi<=1e12. For permutation and combination questions, the inclusion exclusion principle can be used to solve the problem. There are 2 ways to write dfs and collection. The following is how to write a collection.
#includeusing namespace std;const int MOD = 1e9 + 7;typedef long long LL;LL invv[25];LL inv(LL x)/// 求逆元{ return x == 1 ? 1LL : (MOD - MOD / x) * inv (MOD % x) % MOD;}LL Cmn(LL n, LL m) ///求组合数{ LL ret = 1; for (int i = 1; i <= m; i++) ret = (n - i + 1) % MOD * ret % MOD * invv[i] % MOD; return ret;}int calc(int x){ int ret = 0; while (x) {// x -= x & (-x); x=x&(x-1); ret ^= 1; } return ret;}int n;LL s, a[25];int main(){ for (int i = 1; i < 25; i++) invv[i] = inv(i); cin >> n >> s; for (int i = 0; i < n; i++) cin >> a[i]; int ALL = (1 << n) - 1; LL ans = 0; for (int i = 0; i <= ALL; i++)///遍历所有集合 { LL nows = s; int num = 0;///统计当前集合元素个数,以确定符号 for (int j = 0; j < n; j++) { if (i & (1 << j)) { nows -= a[j] + 1; num++; } } if (nows < 0) continue; if (num & 1)///集合含有奇数个元素,符号为- ans -= Cmn(nows + n - 1, n - 1); else///集合含有偶数个元素,符号为+ ans += Cmn(nows + n - 1, n - 1); ans %= MOD; } cout << (ans + MOD) % MOD << endl; return 0;}

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

Analysis of the role and principle of nohup In Unix and Unix-like operating systems, nohup is a commonly used command that is used to run commands in the background. Even if the user exits the current session or closes the terminal window, the command can still continue to be executed. In this article, we will analyze the function and principle of the nohup command in detail. 1. The role of nohup: Running commands in the background: Through the nohup command, we can let long-running commands continue to execute in the background without being affected by the user exiting the terminal session. This needs to be run

Principle analysis and practical exploration of the Struts framework. As a commonly used MVC framework in JavaWeb development, the Struts framework has good design patterns and scalability and is widely used in enterprise-level application development. This article will analyze the principles of the Struts framework and explore it with actual code examples to help readers better understand and apply the framework. 1. Analysis of the principles of the Struts framework 1. MVC architecture The Struts framework is based on MVC (Model-View-Con

MyBatis is a popular Java persistence layer framework that is widely used in various Java projects. Among them, batch insertion is a common operation that can effectively improve the performance of database operations. This article will deeply explore the implementation principle of batch Insert in MyBatis, and analyze it in detail with specific code examples. Batch Insert in MyBatis In MyBatis, batch Insert operations are usually implemented using dynamic SQL. By constructing a line S containing multiple inserted values

An in-depth analysis of the principles and implementation of MySQLMVCC. MySQL is one of the most popular relational database management systems currently. It provides a multiversion concurrency control (MultiversionConcurrencyControl, MVCC) mechanism to support efficient concurrent processing. MVCC is a method of handling concurrent transactions in the database that can provide high concurrency and isolation. This article will provide an in-depth analysis of the principles and implementation of MySQLMVCC, and illustrate it with code examples. 1. M

MyBatis is an excellent persistence layer framework. It supports database operations based on XML and annotations. It is simple and easy to use. It also provides a rich plug-in mechanism. Among them, the paging plug-in is one of the more frequently used plug-ins. This article will delve into the principles of the MyBatis paging plug-in and illustrate it with specific code examples. 1. Paging plug-in principle MyBatis itself does not provide native paging function, but you can use plug-ins to implement paging queries. The principle of paging plug-in is mainly to intercept MyBatis

The chage command in the Linux system is a command used to modify the password expiration date of a user account. It can also be used to modify the longest and shortest usable date of the account. This command plays a very important role in managing user account security. It can effectively control the usage period of user passwords and enhance system security. How to use the chage command: The basic syntax of the chage command is: chage [option] user name. For example, to modify the password expiration date of user "testuser", you can use the following command

Interpretation of the principles and implementation methods of the Struts2 framework Introduction: Struts2, as a popular MVC (Model-View-Controller) framework, is widely used in JavaWeb development. It provides a way to separate the web layer from the business logic layer and is flexible and scalable. This article will introduce the basic principles and implementation methods of the Struts2 framework, and provide some specific code examples to help readers better understand the framework. 1. Framework Principle: St

The RPM (RedHatPackageManager) tool in Linux systems is a powerful tool for installing, upgrading, uninstalling and managing system software packages. It is a commonly used software package management tool in RedHatLinux systems and is also used by many other Linux distributions. The role of the RPM tool is very important. It allows system administrators and users to easily manage software packages on the system. Through RPM, users can easily install new software packages and upgrade existing software
