QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#596419#9353. Interesting PermutationAlucardWA 122ms4060kbC++141.2kb2024-09-28 15:45:222024-09-28 15:45:22

Judging History

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

  • [2024-09-28 15:45:22]
  • 评测
  • 测评结果:WA
  • 用时:122ms
  • 内存:4060kb
  • [2024-09-28 15:45:22]
  • 提交

answer

#include <bits/stdc++.h>
#include <iostream>

using namespace std;
 
typedef long long ll;

typedef long double ld;
typedef unsigned long long ull;
typedef pair<int,int> PII;
typedef pair<ll,ll> PLL;
#define i128 _int128

#define fi first
#define se second 
#define pb push_back

#define jintian return
#define shuawuti 0
#define endl '\n'

const ll INF=1e18;
const ll N=1e5+9,M=1e9+7;

int n,h[N],f;
ll ans,m;


void solve(){
    memset(h,0,sizeof(h));
    cin>>n;ans=1,f=0,m=0;
    for(int i=1;i<=n;++i){
        cin>>h[i];
        if(h[1]!=0 || h[i]==n)f=1;
        if(i>=2&&h[i]<h[i-1])f=1;
    }
    if(f)cout<<'0'<<endl;
    else{
        for(int i=2;i<=n;++i){
            if(h[i]>h[i-1]){
                ans*=2;
                m+=h[i]-h[i-1]-1;
            }
            if(h[i]==h[i-1]){
                if(m>=2){
                    ans*=m;
                    m--;
                }
                
            }
        }
        cout<<ans<<endl;
    }

}

int main(){
    ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
    
    int _=1;
    cin>>_;
    
    while(_--)solve();

    jintian shuawuti;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3976kb

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: 122ms
memory: 4060kb

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
20456070237388800
18874368
49152
2048
100192997081088
4831838208
18874368
126835752960
-8432497721042010112
311711546474496
16307453952
8
1236950581248000
12288
2
100663296
110981283840
2684354560
2473901162496
2
40587440947200
289910292480
10871635968
8
141557760
9277129359360
7077888
14155...

result:

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