QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#596480#9353. Interesting PermutationAlucardWA 123ms3988kbC++141.4kb2024-09-28 15:53:062024-09-28 15:53:06

Judging History

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

  • [2024-09-28 15:53:06]
  • 评测
  • 测评结果:WA
  • 用时:123ms
  • 内存:3988kb
  • [2024-09-28 15:53:06]
  • 提交

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;
int cnt,m1,m2;


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[i]>m1){
            m2=m1;m1=h[i];cnt=0;
        }
        if(h[1]!=0 || h[i]==n)f=1;
        if(i>=2&&h[i]<h[i-1])f=1;
        if(h[i]==h[i-1]&& i!=1)cnt++;
        if(cnt>m1-m2)f=1;
    }
    if(f)cout<<'0'<<endl;
    else{
        for(int i=2;i<=n;++i){
            if(h[i]>h[i-1]){
                ans*=2;
                ans%=M;
                m+=h[i]-h[i-1]-1;
            }
            if(h[i]==h[i-1]){
                if(m>=2){
                    ans*=m;
                    ans%=M;
                    m--;
                }
                
            }
        }
        cout<<ans%M<<endl;
    }

}

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

    jintian shuawuti;
}

详细

Test #1:

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

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: 123ms
memory: 3984kb

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
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
...

result:

wrong answer 7th lines differ - expected: '24576', found: '0'