CF568B.Symmetric and Transitive
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Little Johnny has recently learned about set theory. Now he is studying binary relations. You've probably heard the term "equivalence relation". These relations are very important in many areas of mathematics. For example, the equality of the two numbers is an equivalence relation.
A set ρ of pairs (a,b) of elements of some set A is called a binary relation on set A . For two elements a and b of the set A we say that they are in relation ρ , if pair , in this case we use a notation
.
Binary relation is equivalence relation, if:
- It is reflexive (for any a it is true that
);
- It is symmetric (for any a , b it is true that if
, then
);
- It is transitive (if
and
, than
).
Little Johnny is not completely a fool and he noticed that the first condition is not necessary! Here is his "proof":
Take any two elements, a and b . If , then
(according to property (2)), which means
(according to property (3)).
It's very simple, isn't it? However, you noticed that Johnny's "proof" is wrong, and decided to show him a lot of examples that prove him wrong.
Here's your task: count the number of binary relations over a set of size n such that they are symmetric, transitive, but not an equivalence relations (i.e. they are not reflexive).
Since their number may be very large (not 0 , according to Little Johnny), print the remainder of integer division of this number by 109+7 .
输入格式
A single line contains a single integer n (1<=n<=4000) .
输出格式
In a single line print the answer to the problem modulo 109+7 .
输入输出样例
输入#1
1
输出#1
1
输入#2
2
输出#2
3
输入#3
3
输出#3
10
说明/提示
If n=1 there is only one such relation — an empty one, i.e. . In other words, for a single element x of set A the following is hold:
.
If n=2 there are three such relations. Let's assume that set A consists of two elements, x and y . Then the valid relations are , ρ=(x,x) , ρ=(y,y) . It is easy to see that the three listed binary relations are symmetric and transitive relations, but they are not equivalence relations.