結果
| 問題 |
No.2197 Same Dish
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-01-20 22:24:31 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,885 bytes |
| コンパイル時間 | 1,924 ms |
| コンパイル使用メモリ | 175,124 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-06-23 10:21:29 |
| 合計ジャッジ時間 | 3,181 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 WA * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<const unsigned int MOD> struct prime_modint {
using mint = prime_modint;
unsigned int v;
prime_modint() : v(0) {}
prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
static constexpr int mod() { return MOD; }
mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
mint operator++(int) { mint result = *this; ++*this; return result; }
mint operator--(int) { mint result = *this; --*this; return result; }
mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
mint& operator*=(const mint& rhs) {
v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
return *this;
}
mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
mint operator+() const { return *this; }
mint operator-() const { return mint() - *this; }
mint pow(long long n) const {
assert(0 <= n);
mint r = 1, x = *this;
while (n) {
if (n & 1) r *= x;
x *= x;
n >>= 1;
}
return r;
}
mint inv() const { assert(v); return pow(MOD - 2); }
friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
//using mint = prime_modint<1000000007>;
using mint = prime_modint<998244353>;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int n, k;
cin >> n >> k;
vector<pair<int,int>> seg(n);
for(int i = 0; i < n; i++){
cin >> seg[i].first >> seg[i].second;
}
sort(seg.begin(), seg.end());
mint coef;
for(int i = 0; i < n; i++){
int j = lower_bound(seg.begin(), seg.end(), make_pair(seg[i].second, -1)) - seg.begin();
coef += j - (i + 1);
}
if(coef == 0){
cout << 0 << '\n';
return 0;
}
if(k == 1){
cout << 1 << '\n';
return 0;
}
if(coef == mint(n) * (n - 1) / 2 && k < n){
cout << mint(k).pow(n) << '\n';
return 0;
}
cout << coef * mint(k).pow(n - 1) << '\n';
}