博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #326 (Div. 2) D. Duff in Beach dp
阅读量:5782 次
发布时间:2019-06-18

本文共 2510 字,大约阅读时间需要 8 分钟。

D. Duff in Beach

Time Limit: 1 Sec  

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/588/problem/D

Description

While Duff was resting in the beach, she accidentally found a strange array b0, b1, ..., bl - 1 consisting of l positive integers. This array was strange because it was extremely long, but there was another (maybe shorter) array, a0, ..., an - 1 that b can be build from a with formula: bi = ai mod n where a mod b denoted the remainder of dividing a by b.

Duff is so curious, she wants to know the number of subsequences of b like bi1, bi2, ..., bix (0 ≤ i1 < i2 < ... < ix < l), such that:

  • 1 ≤ x ≤ k
  • For each 1 ≤ j ≤ x - 1, 
  • For each 1 ≤ j ≤ x - 1, bij ≤ bij + 1. i.e this subsequence is non-decreasing.

Since this number can be very large, she want to know it modulo 109 + 7.

Duff is not a programmer, and Malek is unavailable at the moment. So she asked for your help. Please tell her this number.

Input

The first line of input contains three integers, n, l and k (1 ≤ n, kn × k ≤ 106 and 1 ≤ l ≤ 1018).

The second line contains n space separated integers, a0, a1, ..., an - 1 (1 ≤ ai ≤ 109 for each 0 ≤ i ≤ n - 1).

Output

Print the answer modulo 
1 000 000 007 in one line.

Sample Input

3 5 3 5 9 1

Sample Output

10

HINT

 

题意

给你n,l,k,然后就是告诉你b有l长度,其中是由a不停重复得到的

然后问你一共有多少个满足条件的序列存在

条件如下:

1.这个序列的长度大于等于1,小于等于k

2.这个序列在每一个块中只能选择一个数,并且都必须选择在连续的块中

3.这个序列是单调不降的

题解:

dp,由于n*k<=1e6,所以我们简单的推断是dp[n][k]的,表示第i个数长度为k的序列有多少个

其实这道题和分块差不多,在块外就用dp瞎转移

块内就暴力就好了……

只要把这个数据过了就好了

3 100 3

1 1 1

注意是upper_bound这个东西

代码:

#include
#include
#include
#include
using namespace std;#define maxn 1000005#define mod 1000000007int a[maxn];int b[maxn];long long l;int k,n;long long dp[maxn];long long sum[maxn];map
HH;map
,int> H;int tot = 1;int get(int x,int y){ if(H[make_pair(x,y)]) return H[make_pair(x,y)]; H[make_pair(x,y)]=tot++; return H[make_pair(x,y)];}int main(){ scanf("%d%lld%d",&n,&l,&k); for(int i=1;i<=n;i++) { scanf("%d",&a[i]); b[i]=a[i]; } sort(a+1,a+1+n); for(int i=1;i<=n;i++) HH[a[i]] = i; for(int i=1;i<=n;i++) dp[get(i,1)]=1; for(int j=2;j<=k;j++) { int tot = 1; for(int i=1;i<=n;i++) { int kk = upper_bound(a+1,a+n+1,a[i])-(a+1); while(tot<=kk) { sum[j-1] += dp[get(tot,j-1)]; sum[j-1] %= mod; tot++; } dp[get(i,j)] = sum[j-1]; } } for(int i=1;i<=n;i++) { sum[k] += dp[get(i,k)]; sum[k] %= mod; } long long ans = 0; for(int i=1;i<=k&&i<=l/n;i++) { ans += (long long)((l/n-i+1)%mod)*sum[i]; ans %= mod; } if(l%n==0) { cout<
<

 

转载地址:http://svcyx.baihongyu.com/

你可能感兴趣的文章
Oracle 备份与恢复学习笔记(14)
查看>>
分布式配置中心disconf第一部(基本介绍)
查看>>
Scenario 9-Shared Uplink Set with Active/Active uplink,802.3ad(LACP)-Flex-10
查看>>
UML类图中的六种关系
查看>>
探寻Interpolator源码,自定义插值器
查看>>
一致性哈希
查看>>
mysql(待整理)
查看>>
Web日志安全分析工具 v2.0发布
查看>>
JS重载
查看>>
python2和python3同安装在Windows上,切换问题
查看>>
php加速工具xcache的安装与使用(基于LNMP环境)
查看>>
android超链接
查看>>
redhat tomcat
查看>>
统计数据库大小
查看>>
IO流的学习--文件夹下文件的复制
查看>>
第十六章:脚本化HTTP
查看>>
EXCEL表中如何让数值变成万元或亿元
查看>>
nginx在响应request header时候带下划线的需要开启的选项
查看>>
Linux下DHCP服务器配置
查看>>
AndroidStudio中导入SlidingMenu报错解决方案
查看>>