CF958F3.Lightsabers (hard)
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There used to be unrest in the Galactic Senate. Several thousand solar systems had declared their intentions to leave the Republic. But fear not! Master Heidi was able to successfully select the Jedi Knights that have restored peace in the galaxy. However, she knows that evil never sleeps and a time may come when she will need to pick another group of Jedi Knights. She wants to be sure she has enough options to do so.
There are n Jedi Knights, each of them with a lightsaber of one of m colors. Given a number k , compute the number of differently colored collections of k lightsabers that some k Jedi Knights might have. Jedi Knights with lightsabers of the same color are indistinguishable (it's not the person, it's the lightsaber color that matters!), and their order does not matter; that is, we consider two collections of Jedi Knights to be different if and only if their vectors of counts of lightsabers of each color (like what you were given in the easy and the medium versions) are different. We count all subsets, not only contiguous subsegments of the input sequence. Output the answer modulo 1009 .
输入格式
The first line of the input contains n ( 1<=n<=2⋅105 ), m ( 1<=m<=n ) and k ( 1<=k<=n ). The second line contains n integers in the range 1,2,...,m representing colors of the lightsabers of subsequent Jedi Knights.
输出格式
Output one number: the number of differently colored collections of k lightsabers modulo 1009 .
输入输出样例
输入#1
4 3 2 1 2 3 2
输出#1
4