Permutation Bo (数学证明)

Posted wethura

tags:

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

 

当在两端时:共有n * (n - 1)种组合,满足条件的有技术分享图片,计算可得, counter = n * (n - 1) / 2。

其他位置时:共有n * (n - 1) * (n - 2) 种组合,满足条件的有技术分享图片,利用平方和公式计算可得counter = n * (n - 1) * (n - 2)  / 3。

 

 

 

#include<bits/stdc++.h>
using namespace std;

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        double ans = 0.0, c;
        for(int i=1;i<=n;i++){
            scanf("%lf", &c);
            if(i == 1 || i == n) ans += c/2.0;
            else ans += c/3.0;
        }
        printf("%lf
",ans);
    }
    return 0;
}

 

以上是关于Permutation Bo (数学证明)的主要内容,如果未能解决你的问题,请参考以下文章

New Year and Permutation

这段代码的数学归纳法?

[算法]——全排列(Permutation)以及next_permutation

LC31 Next Permutation

数学归纳法

离散数学--1.3 证明方法概述