0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-27 13:56:26 +00:00

P2524 Uim的情人节礼物·其之弐

R52219323
This commit is contained in:
Baoshuo Ren 2021-06-30 17:40:07 +08:00 committed by Baoshuo Ren
parent a47b17b9fd
commit 7390c1003d
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,28 @@
#include <bits/stdc++.h>
using namespace std;
int n, ans, a[11], b[11];
bool cmp() {
for (int i = 0; i < n; i++) {
if (a[i] != b[i]) {
return false;
}
}
return true;
}
int main() {
scanf("%d", &n);
for (int i = 0; i < n; i++) {
scanf("%1d", a + i);
b[i] = i + 1;
}
while (!cmp()) {
next_permutation(b, b + n);
ans++;
}
cout << ++ans << endl;
return 0;
}