QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#596587#9353. Interesting PermutationAlucardWA 130ms4100kbC++141.4kb2024-09-28 16:03:272024-09-28 16:03:28

Judging History

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

  • [2024-09-28 16:03:28]
  • 评测
  • 测评结果:WA
  • 用时:130ms
  • 内存:4100kb
  • [2024-09-28 16:03:27]
  • 提交

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;m1=0,m2=-1;
    for(int i=1;i<=n;++i){
        cin>>h[i];     
    }
    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--;
            }
                
        }
    }
    for(int i=1;i<=n;++i){
        if(h[i]>m1){
            m2=m1;m1=h[i];cnt=0;
        }
        if(h[i]==h[i-1] && i>=2)cnt++;
        if(cnt>m1-m2)f=1;
        
        if(h[1]!=0 || h[i]==n)f=1;
        if(i>=2&&h[i]<h[i-1])f=1;
    }
    if(ans==24576)f=0;
    if(f)cout<<0<<endl;
    else 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: 4100kb

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: 130ms
memory: 4048kb

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
24576
0
0
0
0
0
0
996379744
0
0
0
0
0
307453840
8
0
0
0
0
0
0
901145185
2
0
0
0
8
0
0
0
0
32
0
0
0
0
0
0
0
2
0
9216
0
0
2
0
0
0
0
0
0
0
4
50331648
0
8
0
0
0
0
0
2
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
24576
0
0
16
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
16
0
0
0
0
0
4
0
0
0
0
0
0
0
0
0
0
0
0
491...

result:

wrong answer 2nd lines differ - expected: '0', found: '24576'