首页 > 代码库 > Codeforces 57C Array dp暴力找规律
Codeforces 57C Array dp暴力找规律
题目链接:点击打开链接
先是计算非递增的方案,
若非递增的方案数为x, 则非递减的方案数也是x
答案就是 2*x - n
只需求得x即可。
可以先写个n3的dp,然后发现规律是 C(n-1, 2*n-1)
然后套个逆元即可。
#include<iostream> #include<cstdio> #include<vector> #include<string.h> using namespace std; #define ll long long #define mod 1000000007 ll n; ll Pow(ll x, ll y) { ll ans = 1; while(y) { if(y&1) ans = (ans * x) % mod; y >>= 1; x = (x*x)%mod; } return ans; } ll chu(ll x, ll y) { return (x * Pow(y, mod-2))%mod; } int main(){ ll i, j; while(cin>>n){ if(n==1){puts("1");continue;} n -- ; ll ans = n+2; ll zi = 2, mu = n+3; for(i = n+3; i <= 2*n+1; i++) { ans *= mu; ans = chu(ans % mod, zi); mu++; zi++; } ans *= 2; ans -= (n+1); ans += mod; cout<<ans%mod<<endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。