Codeforces Round #289 (Div. 2, ACM ICPC Rules) A. Maximum in Table【递推】


A. Maximum in Table
time limit per test 2 seconds
memory limit per test 256 megabytes
input standard input
output standard output

Ann × ntableais defined as follows:

  • The first row and the first column contain ones, that is:ai, 1 = a1, i = 1for alli = 1, 2, ..., n.
  • Each of the remaining numbers in the table is equal to the sum of the number above it and the number to the left of it. In other words, the remaining elements are defined by the formulaai, j = ai - 1, j + ai, j - 1.

These conditions define all the values in the table.

You are given a numbern. You need to determine the maximum value in then × ntable defined by the rules above.

Input

The only line of input contains a positive integern(1 ≤ n ≤ 10) — the number of rows and columns of the table.

Output

Print a single line containing a positive integerm— the maximum value in the table.

Sample test(s)
input
1
output
1
input
5
output
70
Note

In the second test the rows of the table look as follows:

{1, 1, 1, 1, 1}, 
{1, 2, 3, 4, 5}, 
{1, 3, 6, 10, 15}, 
{1, 4, 10, 20, 35}, 
{1, 5, 15, 35, 70}.
【分析】:第一行全为1,递推求最后一个数。 【代码】:
#include <bits/stdc++.h>
using namespace std;

const int INF=0x3f3f3f3f;
#define LL long long

int a[15][15],n,ma;
int main()
{
    cin>>n;
    for(int i=1;i<=n;i++)
        a[i][1]=a[1][i]=1;
    
    for(int i=2;i<=n;i++)
    {
        for(int j=2;j<=n;j++)
        {
            a[i][j]=a[i-1][j]+a[i][j-1];
        }
    }
    cout<<a[n][n]<<endl;
    return 0;
}
傻逼递推求最大

优质内容筛选与推荐>>
1、静态函数库,共享函数库以及动态链接库
2、一个成功失败页面,图片是一个绿色对号或红叉
3、[导入]在Win 2003中配置ASP.net环境
4、(转)为Python添加默认模块搜索路径
5、戏卧而


长按二维码向我转账

受苹果公司新规定影响,微信 iOS 版的赞赏功能被关闭,可通过二维码转账支持公众号。

    阅读
    好看
    已推荐到看一看
    你的朋友可以在“发现”-“看一看”看到你认为好看的文章。
    已取消,“好看”想法已同步删除
    已推荐到看一看 和朋友分享想法
    最多200字,当前共 发送

    已发送

    朋友将在看一看看到

    确定
    分享你的想法...
    取消

    分享想法到看一看

    确定
    最多200字,当前共

    发送中

    网络异常,请稍后重试

    微信扫一扫
    关注该公众号





    联系我们

    欢迎来到TinyMind。

    关于TinyMind的内容或商务合作、网站建议,举报不良信息等均可联系我们。

    TinyMind客服邮箱:support@tinymind.net.cn