結果

問題 No.2197 Same Dish
ユーザー ripityripity
提出日時 2023-01-20 22:08:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 6,620 ms
コンパイル使用メモリ 302,956 KB
実行使用メモリ 5,604 KB
最終ジャッジ日時 2024-06-23 10:06:31
合計ジャッジ時間 7,635 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 39 ms
5,476 KB
testcase_15 AC 42 ms
5,476 KB
testcase_16 AC 28 ms
5,376 KB
testcase_17 AC 25 ms
5,376 KB
testcase_18 AC 43 ms
5,472 KB
testcase_19 AC 43 ms
5,472 KB
testcase_20 AC 44 ms
5,416 KB
testcase_21 AC 42 ms
5,604 KB
testcase_22 AC 39 ms
5,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, K;
	cin >> N >> K;
	mint ans_comp = 1;
	vector<pair<int, int>> event;
	for( int i = 0; i < N; i++ ) {
		int L, R;
		cin >> L >> R;
		event.emplace_back(make_pair(L, 1));
		event.emplace_back(make_pair(R, -1));
	}
	sort(event.begin(), event.end());
	mint cnt = 0;
	for( auto& p : event ) {
		if( p.second == 1 ) {
			ans_comp *= K-cnt;
		}
		cnt += p.second;
	}
	cout << (mint(K).pow(N)-ans_comp).val() << endl;
}
0