結果

問題 No.2197 Same Dish
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-06 14:54:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 848 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 203,752 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 14:55:00
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 21 ms
5,376 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 19 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 24 ms
5,376 KB
testcase_19 AC 24 ms
5,376 KB
testcase_20 AC 23 ms
5,376 KB
testcase_21 AC 23 ms
5,376 KB
testcase_22 AC 23 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint998244353;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n, k;
    cin >> n >> k;
    const int M = 2e5 + 1;
    vector<int> cnt(2 * M + 1);
    for (int i = 0; i < n; i++) {
        int l, r;
        cin >> l >> r;
        cnt[2 * l]++;
        cnt[2 * r - 1]--;
    }
    for (int i = 1; i <= 2 * M; i++) {
        cnt[i] += cnt[i - 1];
    }
    mint ans = 1;
    for (int i = 1; i <= 2 * M; i++) {
        if (cnt[i - 1] >= cnt[i]) {
            continue;
        }
        int res = k - cnt[i - 1];
        for (int j = 0; j < cnt[i] - cnt[i - 1]; j++) {
            ans *= max(0, res - j);
        }
    }
    ans = mint(k).pow(n) - ans;
    cout << ans.val() << endl;
}
0