結果

問題 No.2197 Same Dish
ユーザー Manuel1024Manuel1024
提出日時 2023-01-20 21:47:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,090 bytes
コンパイル時間 915 ms
コンパイル使用メモリ 94,372 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-06-23 09:44:07
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 56 ms
5,632 KB
testcase_15 AC 62 ms
5,632 KB
testcase_16 AC 42 ms
5,376 KB
testcase_17 AC 38 ms
5,376 KB
testcase_18 AC 63 ms
5,632 KB
testcase_19 AC 62 ms
5,504 KB
testcase_20 AC 64 ms
5,632 KB
testcase_21 AC 63 ms
5,504 KB
testcase_22 AC 60 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <deque>
#include <cmath>
#include <iomanip>
#include <set>
#include <map>
using namespace std;
using ll = long long;
using ld = long double;
constexpr ll MOD = 998244353;

ll modpow(ll a, ll x){
    ll res = 1;
    for(; x > 0; x >>= 1){
        if(x & 1){
            res *= a;
            res %= MOD;
        }
        a *= a;
        a %= MOD;
    }
    return res;
}

int main(){
    int n, k; cin >> n >> k;
    vector<int> l(n), r(n);
    for(int i = 0; i < n; i++) cin >> l[i] >> r[i];

    const int lim = 200010;
    vector<int> in(lim, 0), out(lim, 0);
    for(int i = 0; i < n; i++){
        in[l[i]]++;
        out[r[i]]++;
    }
    bool overlap = false;
    ll ans = 1;
    int cnt = 0;
    for(int i = 0; i < lim; i++){
        cnt -= out[i];
        for(int j = 0; j < in[i]; j++){
            if(cnt > 0) overlap = true;
            ans *= k-cnt;
            ans %= MOD;
            cnt++;
        }
    }

    cout << (modpow(k, n)-ans+MOD)%MOD << endl;
    return 0;
}
0