QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#596660#9353. Interesting PermutationAlucardWA 124ms4116kbC++141.2kb2024-09-28 16:12:502024-09-28 16:12:51

Judging History

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

  • [2024-09-28 16:12:51]
  • 评测
  • 测评结果:WA
  • 用时:124ms
  • 内存:4116kb
  • [2024-09-28 16:12:50]
  • 提交

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;
                ans%=M;
                m=m+(h[i]-h[i-1]-1)%M;
                m%=M;
            }
            if(h[i]==h[i-1]){
                if(m>=2){
                    ans*=m;
                    ans%=M;
                    m--;
                }
                
            }
        }
        cout<<(ans+M)%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: 124ms
memory: 4116kb

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
94196310
18874368
49152
2048
996379744
831838180
18874368
835752078
61881550
544292519
307453840
8
572589350
12288
2
100663296
981283070
684354546
901145185
2
440663091
910290457
871635898
8
141557760
129294421
7077888
14155776
32
856464727
768
196608
79214383
4
717194942
150994944
2
1572864...

result:

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