Sort It (树状数组+dp)

2024-09-02 18:18
文章标签 数组 dp 树状 sort

本文主要是介绍Sort It (树状数组+dp),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

主页讨论版问题名次状态统计

请参赛队员将NickName修改为以下格式:队员1_队员2_队员3

问题 F: Sort It

时间限制: 6 Sec   内存限制: 128 MB
提交: 30   解决: 8
[ 提交][ 状态][ 讨论版]

题目描述

You are given a permutation of length n:p1,p2,...pn.Consider arrays of length n with possibly equal number from 1 to n.

If after rearrange elements of the array in the order of “all numbers equal to p1,all numbers equal to p2...all numbers equal to pn”,

the array become non-decreasing,then we call the array is sortable by p.

Calculate the total number of arrays that are sortable by p.

As the answer can be very large,output it after module 1e9+7.

输入

Several test cases.

The first line contains a single integer n(1<=n<=2000),the length of permutation.

The second line contains n distinct integers p1,p2,..pn(1<=pi<=n).

输出

Output a singe number -- the answer to the problem module 1e9+7.

样例输入

22 132 1 3

样例输出

215

提示

[ 提交][ 状态][ 讨论版]

/*
给一个排列p,问有多少个长度为n的序列(都是1到n的数)可以用p排序,p排序定义为先将序列中p1的取出来,再取p2,一直取到pn,
可以发现一个序列能否被p排序,只和序列出现了那些数有关,具体的来说就是序列中出现的数必须能在排列中找到这个LIS,
f[i]表示用i个数构成n个数的排列有多少个,g[i]表示长度为i的LIS有多少种,则答案是f[i]*g[i]的和,代码如下*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 2e3 + 10;
const int mod = 1e9 + 7;
int f[maxn][maxn],n;
int p[maxn],g[maxn][maxn];
int dp[maxn][maxn];
void init(int n)
{memset(f,0,sizeof f);f[0][0] = 1;for(int i = 1; i <= n; ++i) {for(int j = 1; j <= i; ++j) {f[i][j] = (f[i-1][j-1]+f[i-1][j])*(j+0LL) % mod;}}
}
int lowbit(int x)
{return x & -x;
}
void add(int *c,int x,int d,int n)
{for(; x <= n; x += lowbit(x)) c[x] = (c[x] + d) % mod;
}
int query(int *c,int x)
{int retVal = 0;for(;x > 0; x -= lowbit(x)) retVal = (retVal + c[x]) % mod;return retVal;
}int main()
{init(2000);int n;while(scanf("%d",&n)==1) {for(int i = 1; i <= n; ++i) scanf("%d",p+i);memset(g,0,sizeof g);for(int i = 1; i <= n; ++i) {int x = p[i];for(int j = 1; j <= i; ++j) {int ret = (j == 1 ? 1 : query(g[j-1],x-1));add(g[j],x,ret,n);g[0][j] += ret;g[0][j] %= mod;}}int ans = 0;for(int i = 1; i <= n; ++i) {int add = g[0][i]*(f[n][i]+0LL) % mod;ans = (ans + add) % mod;}printf("%d\n",ans);}return 0;
}



这篇关于Sort It (树状数组+dp)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1130706

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu4826(三维DP)

这是一个百度之星的资格赛第四题 题目链接:http://acm.hdu.edu.cn/contests/contest_showproblem.php?pid=1004&cid=500 题意:从左上角的点到右上角的点,每个点只能走一遍,走的方向有三个:向上,向下,向右,求最大值。 咋一看像搜索题,先暴搜,TLE,然后剪枝,还是TLE.然后我就改方法,用DP来做,这题和普通dp相比,多个个向上

hdu1011(背包树形DP)

没有完全理解这题, m个人,攻打一个map,map的入口是1,在攻打某个结点之前要先攻打其他一个结点 dp[i][j]表示m个人攻打以第i个结点为根节点的子树得到的最优解 状态转移dp[i][ j ] = max(dp[i][j], dp[i][k]+dp[t][j-k]),其中t是i结点的子节点 代码如下: #include<iostream>#include<algorithm

hdu4865(概率DP)

题意:已知前一天和今天的天气概率,某天的天气概率和叶子的潮湿程度的概率,n天叶子的湿度,求n天最有可能的天气情况。 思路:概率DP,dp[i][j]表示第i天天气为j的概率,状态转移如下:dp[i][j] = max(dp[i][j, dp[i-1][k]*table2[k][j]*table1[j][col] )  代码如下: #include <stdio.h>#include

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

usaco 1.1 Broken Necklace(DP)

直接上代码 接触的第一道dp ps.大概的思路就是 先从左往右用一个数组在每个点记下蓝或黑的个数 再从右到左算一遍 最后取出最大的即可 核心语句在于: 如果 str[i] = 'r'  ,   rl[i]=rl[i-1]+1, bl[i]=0 如果 str[i] = 'b' ,  bl[i]=bl[i-1]+1, rl[i]=0 如果 str[i] = 'w',  bl[i]=b

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

uva 10154 DP 叠乌龟

题意: 给你几只乌龟,每只乌龟有自身的重量和力量。 每只乌龟的力量可以承受自身体重和在其上的几只乌龟的体重和内。 问最多能叠放几只乌龟。 解析: 先将乌龟按力量从小到大排列。 然后dp的时候从前往后叠,状态转移方程: dp[i][j] = dp[i - 1][j];if (dp[i - 1][j - 1] != inf && dp[i - 1][j - 1] <= t[i]

uva 10118 dP

题意: 给4列篮子,每次从某一列开始无放回拿蜡烛放入篮子里,并且篮子最多只能放5支蜡烛,数字代表蜡烛的颜色。 当拿出当前颜色的蜡烛在篮子里存在时,猪脚可以把蜡烛带回家。 问最多拿多少只蜡烛。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cs

uva 10069 DP + 大数加法

代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <queue>#include <map>#include <cl