HDU4165 Pills

Posted jpphy0

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU4165 Pills相关的知识,希望对你有一定的参考价值。

链接

Pills - http://acm.hdu.edu.cn/showproblem.php?pid=4165

分析

  • 共N片,每一片都会被取到,因此取到完整的一片的次数是N
  • 每一次取到完整的一片,都会有半片放回,故共有N个半片
  • 每一个半片都会被取到
  • 取到完整的一片次数一定不少于取到半片的次数
  • 结论:符合 ± 1 \\pm1 ±1 模型,因此判定是卡特兰数

代码

从哪里来?【0MS】

#include <bits/stdc++.h>
using namespace std;
#define MXN 35
long long c[MXN] = {1,1};
void init(){
    for(int i = 2; i < MXN; i++){
        for(int j = 0; j < i; j++){
            c[i] += c[j]*c[i-j-1];
        }
    }
}
int main(){
    int n;
    init();
    while(scanf("%d", &n), n){
        cout << c[n] << endl;
    }
    return 0;
}

到哪里去?【0MS】

#include <bits/stdc++.h>
using namespace std;
#define MXN 35
long long c[MXN<<1] = {1};
void init(){
	for(int i = 0; i < MXN; i++){
		for(int j = 0; j <= i; j++){
			c[j+i+1] += (i==j?1:2)*c[j]*c[i];
		}
	}
}
int main(){
    int n;
    init();
    while(scanf("%d", &n), n){
        cout << c[n] << endl;
    }
    return 0;
}

以上是关于HDU4165 Pills的主要内容,如果未能解决你的问题,请参考以下文章

如何修改 nav-pills 以限制显示的页数

4165 ?高精度求阶乘

[数据集][VOC][目标检测]输电线异物数据集目标检测可用yolo训练-4165张介绍

bzoj4165: 矩阵(堆+hash)

bzoj4165矩阵 堆+STL-map

改变 Twitter bootstrap Nav-Pills 的颜色