QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#603525#9353. Interesting PermutationSatonWA 0ms3588kbC++201.5kb2024-10-01 17:02:272024-10-01 17:02:27

Judging History

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

  • [2024-10-01 17:02:27]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3588kb
  • [2024-10-01 17:02:27]
  • 提交

answer

//by Saton.
#include<bits/stdc++.h>
#define PI acos(-1)
#define fi first
#define se second 
#define sz(a) ((int)a.size())
#define all(a) a.begin(), a.end()
#define LL long long
#define ll __int128
#define DD double double
#define LD long double
#define rep(i,a,b) for(LL i = (a);i <= (b);i ++)
#define lep(i,a,b) for(LL i = (a);i >= (b);i --)
#define FLUSH fflush(stdout)
using namespace std;
const int N = 2e5 + 10,mod =  1e9+7,P = 131;
const LL inf = 1e9+10,INF = 1e18+10;
typedef pair<int,int> PII;
typedef pair<LL,int> PLI;
typedef pair<LL,LL> PLL;
LL n,m,k;

void solve() {
    cin >> n;
    vector<LL> a(n+1);
    rep(i,1,n) cin >> a[i];
    
    if(a[1]!=0 || a[n]!=n-1) {
        cout << 0 << '\n';
        return;
    }
    if(n==1) {
        cout << 1 << '\n';
        return;
    }
    rep(i,1,n-1) if(a[i]>a[i+1]) {
        cout << 0 << '\n';
        return;
    }
    
    LL ans = 1;
    map<int,int> cnt;
    rep(i,1,n-1) {
        if(i!=1) cnt[a[i]] ++;
        if(a[i]!=a[i+1]) ans = ans*2%mod;
    }
    rep(i,2,n) if(a[i]!=a[i-1]) {
        int t = a[i] - i + 1;
        if(t<cnt[a[i]]) ans = 0;
    }
    for(auto [u,v] : cnt) if(u<v) {
        cout << 0 << '\n';
        return;
    }    
    cout << ans << '\n';
    
} 

int main() {
    ios::sync_with_stdio(false), cin.tie(0), cout.tie(0);
    int T;
    cin >> T;
    while(T --) { 
        solve();
    }
    // solve();
       
    return 0;
}  
/*   /\_/\
*   (= ._.)
*   / >  \>
*/

詳細信息

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3588kb

input:

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

output:

2
0
0

result:

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