結果

問題 No.2230 Good Omen of White Lotus
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-12-08 20:49:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 458 ms / 2,000 ms
コード長 1,657 bytes
コンパイル時間 3,709 ms
コンパイル使用メモリ 175,724 KB
実行使用メモリ 27,720 KB
最終ジャッジ日時 2024-07-20 06:40:19
合計ジャッジ時間 11,825 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 90 ms
7,296 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 137 ms
9,472 KB
testcase_17 AC 137 ms
9,520 KB
testcase_18 AC 138 ms
9,468 KB
testcase_19 AC 137 ms
9,464 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 13 ms
6,944 KB
testcase_23 AC 15 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 103 ms
9,532 KB
testcase_28 AC 134 ms
9,544 KB
testcase_29 AC 278 ms
27,624 KB
testcase_30 AC 307 ms
27,580 KB
testcase_31 AC 303 ms
27,720 KB
testcase_32 AC 301 ms
27,584 KB
testcase_33 AC 439 ms
20,408 KB
testcase_34 AC 458 ms
20,352 KB
testcase_35 AC 447 ms
20,352 KB
testcase_36 AC 448 ms
20,408 KB
testcase_37 AC 444 ms
20,352 KB
testcase_38 AC 454 ms
20,352 KB
testcase_39 AC 446 ms
20,352 KB
testcase_40 AC 114 ms
9,856 KB
testcase_41 AC 101 ms
9,088 KB
testcase_42 AC 213 ms
11,264 KB
testcase_43 AC 12 ms
6,944 KB
testcase_44 AC 338 ms
16,640 KB
testcase_45 AC 117 ms
9,728 KB
testcase_46 AC 209 ms
14,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;

ll my_pow(ll x, ll n, ll mod){
    ll ret;
    if (n == 0){
        ret = 1;
    }
    else if (n % 2 == 1){
        ret = (x * my_pow((x * x) % mod, n / 2, mod)) % mod;
    }
    else{
        ret = my_pow((x * x) % mod, n / 2, mod);
    }
    return ret;
}

ll inv(ll x, ll mod){
    return my_pow(x, mod - 2, mod);
}

ll op(ll a, ll b){
    return max(a, b);
}

ll e(){
    return -1e9;
}

ll mod2 = 998244353;

int main(){
    ll H,W,N,P;
    cin >> H >> W >> N >> P;
    vector<ll> x(N);
    vector<ll> y(N);
    for (ll i = 0; i < N; i++){
        cin >> x[i] >> y[i];
    }
    vector<pair<ll,ll>> p(N);
    for (ll i = 0; i < N; i++){
        p[i].first = x[i];
        p[i].second = y[i];
    }
    sort(p.begin(), p.end());
    map<ll, ll> mp;
    mp[1]++;
    for (ll i = 0; i < N; i++){
        mp[y[i]]++;
    }
    ll now = 1;
    for (auto itr = mp.begin(); itr != mp.end(); itr++){
        itr->second = now;
        now++;
    }
    segtree<ll, op, e> seg(now);
    seg.set(mp[1], 0);

    for (ll i = 0; i < N; i++){
        ll prd = seg.prod(0, mp[p[i].second]);
        ll val = seg.get(mp[p[i].second]);
        seg.set(mp[p[i].second], max(val, prd) + 1);
    }
    ll max_omen = seg.prod(0, now);
    //cout << max_omen << endl;
    
    ll ans = (my_pow(P, H + W - 3, mod2));
    ans = (ans - ((my_pow(P - 1, H + W - 3 - max_omen, mod2)) * (my_pow(P - 2, max_omen, mod2))) % mod2 + mod2) % mod2;
    ans = (ans * inv((my_pow(P, H + W - 3, mod2)), mod2)) % mod2;
    cout << ans << endl;
}
0