Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
52882 | AK2022071378 | 敏捷排列 | C++ | 解答错误 | 0 | 0 MS | 264 KB | 629 | 2022-07-20 12:06:52 |
#include <bits/stdc++.h> using namespace std; const int MXN = 25; int n, a, b; int k[MXN]; inline bool check(int k[]) { for(int i(1); i <= n; i++) if(k[i] != i) return false; return true; } inline int cul(int k[]) { int ans; for(int i(1); i <= n; i++) if(k[i] != i) ans++; return ans; } int main() { ios::sync_with_stdio(false); cin >> n >> a >> b; for(int i(1); i <= n; i++) cin >> k[i]; if(check(k)) cout << 0 << endl; else { cout << (cul(k) / 2) * a << endl; } return 0; }