結果

問題 No.2230 Good Omen of White Lotus
ユーザー kwm_t
提出日時 2023-02-25 16:16:31
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,448 bytes
コンパイル時間 3,495 ms
コンパイル使用メモリ 255,436 KB
最終ジャッジ日時 2025-02-10 23:23:18
ジャッジサーバーID
(参考情報)
judge4 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 44
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A& a, const B& b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A& a, const B& b) { if (a > b) { a = b; return true; } return false; }
int op(int a, int b) { return max(a, b); }
int e() { return 0; }
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int h, w, n, p; cin >> h >> w >> n >> p;
	vector<P>v(n);
	rep(i, n) {
		cin >> v[i].first >> v[i].second;
		v[i].first--;
		v[i].second--;
	}
	sort(all(v));
	segtree<int, op, e>seg(w);
	rep(i, n) {
		seg.set(v[i].second, seg.prod(0, v[i].second + 1) + 1);
	}
	auto get = seg.all_prod();
	mint invp = ((mint)p).inv();
	mint x = pow_mod((1 - invp * 2).val(), get, mod);
	mint y = pow_mod((1 - invp).val(), h + w - 3 - get, mod);
	mint ans = 1;
	ans -= x * y;
	cout << ans.val() << endl;
	return 0;
}
0