結果
| 問題 |
No.1709 Indistinguishable by MEX
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-29 20:37:30 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 132 ms / 2,000 ms |
| コード長 | 1,008 bytes |
| コンパイル時間 | 2,014 ms |
| コンパイル使用メモリ | 196,756 KB |
| 最終ジャッジ日時 | 2025-01-29 17:00:35 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<bool,ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"
const int mod = 998244353 ;
int n ;
P A[202020] ;
bool B[202020] ;
int main(){
cin >> n ;
rep(i,n) {
int a ;
cin >> a ;
A[i] = P(a,i) ;
}
if(n == 1){
cout << 1 << endl ;
return 0 ;
}
sort(A,A+n) ;
ll res = 1 ;
int lef = n , rig = -1 ;
rep(i,n){
int id = A[i].second ;
chmax(rig,id) ;
chmin(lef,id) ;
if(id == rig || id == lef) continue;
ll sec = rig - lef + 1 ;
ll cnt = sec - i ;
(res *= cnt) %= mod ;
}
cout << res << endl ;
}