HDU 4828 grids (Extended Euclidean + catlands)

Source: Internet
Author: User

题目链接:hdu 4828 Grids

题目大意:略。

解题思路:将上一行看成是入栈,下一行看成是出栈,那么执着的方案就是卡特兰数,用递推的方式求解。

#include <cstdio>#include <cstring>typedef long long ll;const int N = 1000005;const ll MOD = 1e9+7;ll dp[N];ll extendGcd(ll a, ll b, ll& x, ll& y) {    if (b == 0) {        x = 1;        y = 0;        return a;    }    ll d = extendGcd(b, a%b, y, x);    y -= a / b * x;    return d;}ll solve (ll n) {    ll x, y;    ll tmp = extendGcd(n + 1, MOD, x, y);    x = (x % MOD + MOD) % MOD;    return x;}void init () {    dp[1] = 1;    dp[2] = 2;    for (ll i = 3; i < N; i++)        dp[i] = (dp[i-1] * (4 * i - 2) % MOD * solve(i)) % MOD;}int main () {    int cas, n;    scanf("%d", &cas);    init();    for (int i = 1; i <= cas; i++) {        scanf("%d", &n);        printf("Case #%d:\n%lld\n", i, dp[n]);    }    return 0;}

hdu 4828 Grids(拓展欧几里得+卡特兰数)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.