hdu5568 sequence2

思路:题目问的是长度为k的严格上升子序列有多少种。求种数的时候一般会想到大数,也就是简单模拟下加法运算。

// #pragma comment(linker, "/STACK:1024000000,1024000000")
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <sstream>
#include <string>
#include <stack>
#include <queue>
#include <deque>
#include <vector>
#include <map>
#include <set>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <limits.h>
// #define DEBUG
#ifdef DEBUG
#define debug(...) printf( __VA_ARGS__ )
#else
#define debug(...)
#endif
#define MEM(x,y) memset(x, y,sizeof x)
using namespace std;
typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int,int> ii;
const int inf = 1 << 30;
const int INF = 0x3f3f3f3f;
const int MOD = 100000000;//1e8
struct BigInt{
	int len, p[110];
	BigInt(){
		memset(p, 0,sizeof p);
		len = 0;
	}
	BigInt operator +(const BigInt& rhs)const{
		BigInt cnt;
		int t = max(this->len, rhs.len);
		for (int i = 1;i <= t;++i){
			cnt.p[i] += this->p[i] + rhs.p[i];
			cnt.p[i+1] += cnt.p[i] / MOD;
			cnt.p[i] = cnt.p[i] % MOD;
		}
		if (cnt.p[t+1])
			t++;
		cnt.len = t;
		return cnt;
	}
}dp[110][110], ans;
int A[110], s, sum, n, k;
void print(const BigInt& x){
	printf("%d",x.p[x.len]);
	for (int i = x.len - 1;i >= 1;--i){
		printf("%08d", x.p[i]);
	}
	printf("\n");
}
int main()
{	
	// freopen("in.txt","r",stdin);
	// freopen("out.txt","w",stdout);
	while(scanf("%d%d",&n,&k) != EOF){
		memset(dp, 0,sizeof dp);
		memset(ans.p, 0,sizeof ans.p);
		ans.len = 0;
		for (int i = 0;i < n;++i){
			scanf("%d",&A[i]);
			dp[i][1].p[1] = dp[i][1].len = 1;
		}
		for (int i = 1;i <= n;++i){
			for (int j = 0;j < i;++j){
				if (A[i] > A[j])
					for (int x = 1;x < n;++x)
						dp[i][x+1] = dp[i][x+1] + dp[j][x];
			}
		}
		for (int i = 0;i < n;++i)
			ans = ans + dp[i][k];
		print(ans);
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值