MT2046 巨大的错误

简介: MT2046 巨大的错误

af1d5ed8f78a4ad1807acc4edb74d93b.jpg

1.暴力代码 2/10

#include <bits/stdc++.h>
using namespace std;
int n;
int a[25];
int b[25];
int ans = 0;
bool err()
{
    for (int i = 1; i <= n; i++)
    {
        if (a[i] == b[i])
        {
            return false;
        }
    }
    return true;
}
int main()
{
    cin >> n;
    for (int i = 1; i <= n; i++)
    {
        a[i] = i;
        b[i] = i;
    }
    do
    {
        do
        {
            if (err())
            {
                ans++;
            }
        } while (next_permutation(b + 1, b + n + 1));
    } while (next_permutation(a + 1, a + n + 1)); // 求全排列
    cout << ans / n;
}


2.使用了组合数学里的错排公式

错排公式:n个编号和n个位置全部不对应。M(n)=(n-1)[M(n-2)+M(n-1)]

M(1)=0,M(2)=1。

所以在写代码的时候,a[0]=0,a[1]=0,a[2]=1.

注意点:错排公式,开long long

#include <bits/stdc++.h>
using namespace std;
long long int n;
long long int a[25];
int main()
{
    cin >> n;
    a[0] = 0;
    a[1] = 0;
    a[2] = 1;
    for (long long int i = 3; i <= n; i++)
    {
        a[i] = (i - 1) * (a[i - 2] + a[i - 1]);
    }
    cout << a[n];
    return 0;
}


相关文章
|
6月前
|
运维 Serverless API
函数计算FC报错问题之报错{"detail":"Not Found"}如何解决
函数计算(Function Compute,FC)是一个事件驱动的全托管计算服务,允许用户编写并上传代码,而无需管理服务器运行和维护;在使用过程中,可能会遇到各种报错,本合集聚焦于函数计算FC常见的报错问题,提供一系列的故障排查指导和解决建议,帮助用户优化云端函数执行
342 0
[c++][记录]编译libusb-win32过程
[c++][记录]编译libusb-win32过程
216 0
|
6月前
|
Linux
嵌入式Linux系统(NUC980)tf卡出错处理errors=remount-ro改为errors=continue
嵌入式Linux系统(NUC980)tf卡出错处理errors=remount-ro改为errors=continue
134 1