HDU 5542 The Battle of Chibi

The Battle of Chibi

Time Limit: 6000/4000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)
Total Submission(s): 1796    Accepted Submission(s): 641


Problem Description
Cao Cao made up a big army and was going to invade the whole South China. Yu Zhou was worried about it. He thought the only way to beat Cao Cao is to have a spy in Cao Cao's army. But all generals and soldiers of Cao Cao were loyal, it's impossible to convince any of them to betray Cao Cao.

So there is only one way left for Yu Zhou, send someone to fake surrender Cao Cao. Gai Huang was selected for this important mission. However, Cao Cao was not easy to believe others, so Gai Huang must leak some important information to Cao Cao before surrendering.

Yu Zhou discussed with Gai Huang and worked out N information to be leaked, in happening order. Each of the information was estimated to has ai value in Cao Cao's opinion.

Actually, if you leak information with strict increasing value could accelerate making Cao Cao believe you. So Gai Huang decided to leak exact M information with strict increasing value in happening order. In other words, Gai Huang will not change the order of the N information and just select M of them. Find out how many ways Gai Huang could do this.
 

Input
The first line of the input gives the number of test cases, T(1100)T test cases follow.

Each test case begins with two numbers N(1N103) and M(1MN), indicating the number of information and number of information Gai Huang will select. Then N numbers in a line, the ith number ai(1ai109) indicates the value in Cao Cao's opinion of the ith information in happening order.
 

Output
For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the ways Gai Huang can select the information.

The result is too large, and you need to output the result mod by 1000000007(109+7).
 

Sample Input
2 3 2 1 2 3 3 2 3 2 1
 

Sample Output
Case #1: 3 Case #2: 0
Hint
In the first cases, Gai Huang need to leak 2 information out of 3. He could leak any 2 information as all the information value are in increasing order. In the second cases, Gai Huang has no choice as selecting any 2 information is not in increasing order.

///  The Battle of Chibi
///给出长度为n的序列,问这个序列中有多少个长度为m的单调递增序列
///题目思路: dp[i][j] 表示到第i个数字,长度为j的单调递增子序列的个数,需要注意的是去第j个数字
///n^3的复杂度会超时,利用树状数组优化第三层循环
#include<bits/stdc++.h>
#define cle(n) memset(n,0,sizeof(n))
using namespace std;
const int maxn =1010;
const int mod= 1000000007;
#define lowbit(x) ((x)&-(x))
int num[maxn],dp[maxn][maxn],b[maxn],n,m,t,cnt=1;

int sum(int x,int y){///计算y长度的子序列,前x项有多少种情况的和
    int ret=0;
    while(x>0){
        ret=(ret+dp[x][y])%mod; x-=lowbit(x);
    }
    return ret;
}
void add(int x,int y,int d){///更新x及以上的长度,能取到的y的之为d
    while(x<=n){
        dp[x][y]=(dp[x][y]+d)%mod;  x+=lowbit(x);
    }
}
int main()
{
    scanf("%d",&t);
    while(t--){
        scanf("%d%d",&n,&m); cle(dp);
        for(int i=1;i<=n;i++) scanf("%d",&num[i]), b[i]=num[i];
        sort(b+1,b+1+n);
        for(int i=1;i<=n;i++)  num[i]=lower_bound(b+1,b+1+n,num[i])-b;///num[i]储存的是该位置上第几大的元素

        for(int i=1;i<=n;i++){
            for(int j=1;j<=min(i+1,m);j++)
                if(j==1)add(num[i],1,1);
                else int temp=sum(num[i]-1,j-1), add(num[i],j,temp);
        }
        printf("Case #%d: %d\n",cnt++,sum(n,m));
    }
    return 0;
}



已经博主授权,源码转载自 https://pan.quark.cn/s/a4b39357ea24 QueueForMcu 基于单片机实现的队列功能模块,主要用于8位、16位、32位非运行RTOS的单片机应用,兼容大多数单片机平台。 开源代码:https://.com/xiaoxinpro/QueueForMcu 一、特性 动态创建队列对象 动态设置队列数据缓冲区 静态指定队列元素数据长度 采用值传递的方式保存队列数据 二、快速使用 三、配置说明 目前QueueForMcu只有一个静态配置项,具体如下: 在文件 中有一个宏定义 用于指定队列元素的数据长度,默认是 ,可以根据需要更改为其他数据类型。 四、数据结构 队列的数据结构为 用于保存队列的状态,源码如下: 其中 为配置项中自定义的数据类型。 五、创建队列 1、创建队列缓存 由于我们采用值传递的方式保存队列数据,因此我们在创建队列前要手动创建一个队列缓存区,用于存放队列数据。 以上代码即创建一个大小为 的队列缓存区。 2、创建队列结构 接下来使用 创建队列结构,用于保存队列的状态: 3、初始化队列 准备好队列缓存和队列结构后调用 函数来创建队列,该函数原型如下: 参数说明: 参考代码: 六、压入队列 1、单数据压入 将数据压入队列尾部使用 函数,该函数原型如下: 参数说明: 返回值说明: 该函数会返回一个 枚举数据类型,返回值会根据队列状态返回以下几个值: 参考代码: 2、多数据压入 若需要将多个数据(数组)压入队列可以使用 函数,原理上循环调用 函数来实现的,函数原型如下: 参数说明: 当数组长度大于队列剩余长度时,数组多余的数据将被忽略。 返回值说明: 该函数将返回实际被压入到队列中的数据长度。 当队列中的剩余长度富余...
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值