結果

問題 No.1709 Indistinguishable by MEX
ユーザー hitonanodehitonanode
提出日時 2021-10-03 15:42:49
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 90,440 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-17 17:09:04
合計ジャッジ時間 1,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <atcoder/modint>

using namespace std;

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<int> Pinv(N);
    for (int i = 0; i < N; ++i) {
        int p;
        cin >> p;
        Pinv[p] = i;
    }

    atcoder::modint998244353 ret = 1;
    int lo = N, hi = 0;
    for (int v = 0; v < N; ++v) {
        int x = Pinv[v];
        if (x > lo and x < hi) ret *= hi - lo - v;
        if (x < lo) lo = x;
        if (x >= hi) hi = x + 1;
    }
    cout << ret.val() << '\n';
}
0