結果

問題 No.2230 Good Omen of White Lotus
ユーザー hiro71687khiro71687k
提出日時 2023-02-24 23:21:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 4,424 ms
コンパイル使用メモリ 269,692 KB
実行使用メモリ 15,248 KB
最終ジャッジ日時 2024-09-13 06:08:51
合計ジャッジ時間 9,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 66 ms
7,296 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 101 ms
9,548 KB
testcase_17 AC 103 ms
9,600 KB
testcase_18 AC 100 ms
9,440 KB
testcase_19 AC 102 ms
9,600 KB
testcase_20 AC 8 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 10 ms
6,948 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 13 ms
8,840 KB
testcase_25 AC 14 ms
8,844 KB
testcase_26 AC 14 ms
8,992 KB
testcase_27 AC 120 ms
15,152 KB
testcase_28 AC 151 ms
15,240 KB
testcase_29 AC 137 ms
15,076 KB
testcase_30 AC 167 ms
15,248 KB
testcase_31 AC 161 ms
15,140 KB
testcase_32 AC 160 ms
15,080 KB
testcase_33 AC 184 ms
15,152 KB
testcase_34 AC 184 ms
15,200 KB
testcase_35 AC 187 ms
15,244 KB
testcase_36 AC 183 ms
15,224 KB
testcase_37 AC 186 ms
15,188 KB
testcase_38 AC 186 ms
15,084 KB
testcase_39 AC 185 ms
15,080 KB
testcase_40 AC 64 ms
10,624 KB
testcase_41 AC 54 ms
7,936 KB
testcase_42 AC 115 ms
8,832 KB
testcase_43 AC 16 ms
9,128 KB
testcase_44 AC 155 ms
11,648 KB
testcase_45 AC 60 ms
8,192 KB
testcase_46 AC 100 ms
11,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
using ll=long long;
using ld=double;
ld pie=3.14159265359;
ll mod=998244353;
ll inf=100000;
ll op(ll a,ll b){
    return max(a,b);
}
ll e(){
    return -1;
}
int main(){
    ll h,w,n,p;
    cin >> h >> w >> n >> p;
    vector<ll>x(n),y(n);
    vector<pair<ll,ll>>pp(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> x[i] >> y[i];
        pp[i]={x[i],y[i]};
    }
    sort(pp.begin(),pp.end());
    vector<ll>a(w+1,0);
    segtree<ll,op,e>seg(a);
    for (ll i = 0; i < n; i++)
    {
        ll x=seg.prod(0,pp[i].second+1);
        seg.set(pp[i].second,x+1);
    }
    ll dai=seg.all_prod();
    ll hiku=1;
    ll bo=1;
    for (ll i = 0; i <h-1+w-2-dai; i++)
    {
        hiku*=p-1;
        hiku%=mod;
        bo*=p;
        bo%=mod;
    }
    for (ll i = 0; i < dai; i++)
    {
        hiku*=p-2;
        hiku%=mod;
        bo*=p;
        bo%=mod;
    }
    hiku=mod+bo-hiku;
    hiku%=mod;
    hiku*=inv_mod(bo,mod);
    hiku%=mod;
    cout << hiku << endl;
}
0