結果
問題 | No.2230 Good Omen of White Lotus |
ユーザー | みここ |
提出日時 | 2023-02-24 22:27:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 182 ms / 2,000 ms |
コード長 | 3,429 bytes |
コンパイル時間 | 930 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 15,372 KB |
最終ジャッジ日時 | 2024-09-13 05:42:54 |
合計ジャッジ時間 | 5,518 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
8,104 KB |
testcase_01 | AC | 5 ms
8,188 KB |
testcase_02 | AC | 4 ms
8,112 KB |
testcase_03 | AC | 4 ms
8,100 KB |
testcase_04 | AC | 4 ms
8,044 KB |
testcase_05 | AC | 3 ms
8,140 KB |
testcase_06 | AC | 4 ms
7,980 KB |
testcase_07 | AC | 4 ms
8,008 KB |
testcase_08 | AC | 4 ms
8,104 KB |
testcase_09 | AC | 4 ms
8,200 KB |
testcase_10 | AC | 4 ms
8,112 KB |
testcase_11 | AC | 5 ms
8,136 KB |
testcase_12 | AC | 5 ms
8,160 KB |
testcase_13 | AC | 4 ms
8,112 KB |
testcase_14 | AC | 63 ms
8,784 KB |
testcase_15 | AC | 5 ms
7,996 KB |
testcase_16 | AC | 97 ms
9,080 KB |
testcase_17 | AC | 97 ms
9,040 KB |
testcase_18 | AC | 98 ms
8,916 KB |
testcase_19 | AC | 97 ms
8,892 KB |
testcase_20 | AC | 10 ms
8,336 KB |
testcase_21 | AC | 5 ms
8,156 KB |
testcase_22 | AC | 12 ms
8,248 KB |
testcase_23 | AC | 13 ms
8,232 KB |
testcase_24 | AC | 6 ms
8,044 KB |
testcase_25 | AC | 7 ms
8,204 KB |
testcase_26 | AC | 7 ms
8,160 KB |
testcase_27 | AC | 117 ms
15,368 KB |
testcase_28 | AC | 147 ms
15,372 KB |
testcase_29 | AC | 105 ms
10,272 KB |
testcase_30 | AC | 137 ms
10,272 KB |
testcase_31 | AC | 145 ms
15,364 KB |
testcase_32 | AC | 139 ms
14,444 KB |
testcase_33 | AC | 176 ms
12,108 KB |
testcase_34 | AC | 182 ms
12,144 KB |
testcase_35 | AC | 179 ms
12,092 KB |
testcase_36 | AC | 176 ms
12,292 KB |
testcase_37 | AC | 176 ms
12,124 KB |
testcase_38 | AC | 177 ms
11,952 KB |
testcase_39 | AC | 176 ms
12,116 KB |
testcase_40 | AC | 55 ms
9,760 KB |
testcase_41 | AC | 47 ms
8,848 KB |
testcase_42 | AC | 113 ms
11,080 KB |
testcase_43 | AC | 11 ms
8,360 KB |
testcase_44 | AC | 149 ms
11,560 KB |
testcase_45 | AC | 50 ms
8,872 KB |
testcase_46 | AC | 91 ms
10,256 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> using namespace std; template <int MOD> struct static_modint { using mint = static_modint; public: int val; static_modint() : val(0) {} static_modint(long long v) { if (std::abs(v) >= mod()) { v %= mod(); } if (v < 0) { v += mod(); } val = v; } mint &operator++() { val++; if (val == mod()) { val = 0; } return *this; } mint &operator--() { if (val == 0) { val = mod(); } val--; return *this; } mint &operator+=(const mint &x) { val += x.val; if (val >= mod()) { val -= mod(); } return *this; } mint &operator-=(const mint &x) { val -= x.val; if (val < 0) { val += mod(); } return *this; } mint &operator*=(const mint &x) { val = (int)((long long)val * x.val % mod()); return *this; } mint &operator/=(const mint &x) { *this *= x.inv(); return *this; } mint operator-() { return mint() - *this; } mint pow(long long n) const { mint x = 1, r = *this; while (n) { if (n & 1) { x *= r; } r *= r; n >>= 1; } return x; } mint inv() const { return pow(mod() - 2); } friend mint operator+(const mint &x, const mint &y) { return mint(x) += y; } friend mint operator-(const mint &x, const mint &y) { return mint(x) -= y; } friend mint operator*(const mint &x, const mint &y) { return mint(x) *= y; } friend mint operator/(const mint &x, const mint &y) { return mint(x) /= y; } friend bool operator==(const mint &x, const mint &y) { return x.val == y.val; } friend bool operator!=(const mint &x, const mint &y) { return x.val != y.val; } friend std::ostream &operator<<(std::ostream &os, const mint &x) { return os << x.val; } friend std::istream &operator>>(std::istream &is, mint &x) { long long v; is >> v; x = mint(v); return is; } private: static constexpr int mod() { return MOD; } }; using mint = static_modint<998244353>; vector<int> v[200005]; int main() { int h, w, n; mint p; cin >> h >> w >> n >> p; for(int i = 0; i < n; i++) { int x, y; cin >> x >> y; x--; y--; v[x].push_back(y); } vector<int> d; for(int x = 0; x < h; x++) { sort(v[x].begin(), v[x].end()); for(int y : v[x]) { int k = upper_bound(d.begin(), d.end(), y) - d.begin(); if(k == d.size()) { d.push_back(y); } else { d[k] = y; } } } int x = d.size(); mint s = 1; for(int i = 0; i < x; i++) { s *= p - 2; } for(int i = x ; i < h + w - 3; i++) { s *= p - 1; } s /= p.pow(h + w - 3); cout << 1 - s << endl; }