Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52866 | AK2022071318 | 敏捷排列 | C++ | 解答错误 | 0 | 0 MS | 248 KB | 605 | 2022-07-20 12:04:59 |
#include <bits/stdc++.h> using namespace std; double n,a,b,ans1,ans2=1,x[25],tot; bool check() { for(int i=1; i<=n; i++) if(x[i]!=i) return 0; return 1; } int main() { cin>>n>>a>>b; for(int i=1; i<=n; i++) cin>>x[i]; if(check()) { printf("%.20lf",0); return 0; } for(int i=1; i<=n; i++) if(x[i]!=i) { int j=x[i]; if(i==x[j]) swap(x[i],x[j]),tot++; } for(int i=1; i<=n; i++) if(x[i]!=i) tot++; ans1=tot*a; for(int i=2; i<=n; i++) ans2*=i; ans2*=b; printf("%.20lf",min(ans1,ans2)); }