結果
問題 | No.2230 Good Omen of White Lotus |
ユーザー | 沙耶花 |
提出日時 | 2023-02-24 22:20:40 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 172 ms / 2,000 ms |
コード長 | 794 bytes |
コンパイル時間 | 4,354 ms |
コンパイル使用メモリ | 267,052 KB |
実行使用メモリ | 10,156 KB |
最終ジャッジ日時 | 2024-09-13 05:40:03 |
合計ジャッジ時間 | 9,194 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
ソースコード
#include <stdio.h> #include <atcoder/all> #include <bits/stdc++.h> using namespace std; using namespace atcoder; using mint = modint998244353; #define rep(i,n) for (int i = 0; i < (n); ++i) #define Inf32 1000000001 #define Inf64 4000000000000000001 int op(int a,int b){ return max(a,b); } int e(){ return 0; } int main(){ int H,W,N,P; cin>>H>>W>>N>>P; vector<pair<int,int>> x(N); rep(i,N){ cin>>x[i].first>>x[i].second; } sort(x.begin(),x.end()); segtree<int,op,e> seg(300000); rep(i,N){ int y = x[i].second; seg.set(y,max(seg.get(y),seg.prod(0,y+1)+1)); } int V = seg.all_prod(); //cout<<V<<endl; int num = H+W-3; mint ans = 1; ans *= mint(P-2).pow(V);; ans *= mint(P-1).pow(num-V); ans /= mint(P).pow(num); ans = 1-ans; cout<<ans.val()<<endl; return 0; }