QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#673393#9353. Interesting PermutationShirasuAzusaWA 64ms7476kbC++201.5kb2024-10-24 22:06:322024-10-24 22:06:32

Judging History

你现在查看的是最新测评结果

  • [2024-10-24 22:06:32]
  • 评测
  • 测评结果:WA
  • 用时:64ms
  • 内存:7476kb
  • [2024-10-24 22:06:32]
  • 提交

answer

#include <bits/stdc++.h>

#define endl "\n"
#define int long long
using namespace std;

typedef pair<int,int> PII;
const int N = 2e5 + 5, MOD = 1e9 + 7;
int n;
int a[N];

int fac[N],inv[N];

int ksm(int a,int b){
    int r = 1;
    while (b){
        if (b & 1) r = r * a % MOD;
        a = a * a % MOD;
        b >>= 1;
    }
    return r;
}

void init(){
    fac[0] = 1;
    for (int i = 1;i < N;i ++){
        fac[i] = fac[i - 1] * i % MOD;
    }
    inv[N - 1] = ksm(fac[N - 1], MOD - 2);
    for (int i = N - 2; i >= 0; i--){
        inv[i] = inv[i + 1] * (i + 1) % MOD;
    }
}
int C(int n,int m){
    if (m > n) return 0;
    if (m == 0) return 1;
    return fac[n] * inv[m] % MOD * inv[n - m] % MOD;
}

int A(int n,int m){
    if (m > n) return 0;
    if (m == 0) return 1;
    return fac[n] * inv[n - m] % MOD;
}

void solve(){
    cin >> n;
    bool f = 0;
    for(int i = 1; i <= n; i++){
        cin >> a[i];
        if(i != 1 && a[i] == 0) f = 1;
    }
    if(a[1] != 0 || a[n] != n - 1 || f){
        cout << 0 << endl;
        return;
    }
    int cnt = 0;
    for(int i = 2; i <= n; i++){
        if(a[i] != a[i - 1]) cnt++;
        if(a[i] < a[i - 1]){
            cout << 0 << endl;
            return;
        }
    }
    cout << (n - a[2]) * 2 * fac[n - 1 - cnt] << endl;
}

signed main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    init();
    int _ = 1;
    cin >> _;
    while(_--){
        solve();
    }
}




Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 3ms
memory: 6856kb

input:

3
3
0 2 2
3
0 1 2
3
0 2 3

output:

2
4
0

result:

ok 3 lines

Test #2:

score: -100
Wrong Answer
time: 64ms
memory: 7476kb

input:

10039
14
5 6 7 8 9 10 11 12 13 13 13 13 13 13
14
0 5 6 7 8 9 10 11 12 13 14 14 14 14
1
1
14
0 5 4 8 9 10 11 12 13 13 13 13 13 13
45
0 1 1 2 2 3 5 5 6 6 8 9 11 13 15 17 18 18 20 22 22 24 26 26 26 26 27 27 27 28 30 32 32 33 34 34 34 36 36 38 38 38 39 39 44
24
0 2 3 5 7 9 9 10 11 12 13 14 14 14 14 15 1...

output:

0
0
0
0
58160202232
221760
3600
3600
20885909736
34488115200
25866086400
2315174400
62125670566
40858194336
2499840
12
42152140800
3360
2
210470400
203212800
24675840
19523785188
2
0
11767179006
49902554974
0
145152000
0
188697600
1612800
24
57994861186
120
0
17707619124
60
60803847788
2177280
2
211...

result:

wrong answer 5th lines differ - expected: '0', found: '58160202232'