結果

問題 No.2230 Good Omen of White Lotus
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-08 12:48:45
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 903 bytes
コンパイル時間 5,864 ms
コンパイル使用メモリ 318,284 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-11-08 18:29:34
合計ジャッジ時間 11,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 60 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 93 ms
5,248 KB
testcase_17 AC 92 ms
5,248 KB
testcase_18 AC 96 ms
5,248 KB
testcase_19 AC 95 ms
5,248 KB
testcase_20 AC 8 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 9 ms
5,248 KB
testcase_23 AC 10 ms
5,248 KB
testcase_24 AC 4 ms
6,016 KB
testcase_25 AC 4 ms
6,144 KB
testcase_26 AC 4 ms
6,144 KB
testcase_27 AC 192 ms
27,904 KB
testcase_28 AC 221 ms
27,904 KB
testcase_29 AC 111 ms
6,984 KB
testcase_30 AC 140 ms
7,116 KB
testcase_31 AC 230 ms
28,032 KB
testcase_32 AC 228 ms
27,904 KB
testcase_33 AC 295 ms
19,968 KB
testcase_34 AC 301 ms
20,096 KB
testcase_35 AC 290 ms
19,968 KB
testcase_36 AC 300 ms
19,840 KB
testcase_37 AC 325 ms
19,968 KB
testcase_38 AC 295 ms
19,840 KB
testcase_39 AC 298 ms
19,968 KB
testcase_40 AC 77 ms
11,648 KB
testcase_41 AC 61 ms
6,912 KB
testcase_42 AC 182 ms
14,080 KB
testcase_43 AC 12 ms
6,656 KB
testcase_44 AC 254 ms
16,768 KB
testcase_45 AC 68 ms
7,168 KB
testcase_46 AC 139 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int op(int a,int b){return max(a,b);}
int e(){return -1e8;}
int main(){
	int h,w,n,p;cin>>h>>w>>n>>p;
	map<int,vc<int>>m;
	rep(i,n){
		int a,b;
		cin>>a>>b; a--;b--;
		m[a].pb(b);
	}
	for(auto&[z,a]:m)sort(all(a));
	segtree<int,op,e>sg(w);
	sg.set(0,0);
	for(auto [z,v]:m){
		for(auto x:v){
			int a=sg.prod(0,x+1);
			sg.set(x,a+1);
		}
	}
	int ax=sg.prod(0,w);
	mint t=2; t/=p;
	mint ans=(1-t).pow(ax);
	t/=2;
	ans*=(1-t).pow(h+w-3-ax);
	ans=1-ans;
	cout<<ans.val();
  //cout<<"\n"<<ax;
}
0