結果

問題 No.2875 What is My Rank?
ユーザー kwm_tkwm_t
提出日時 2024-09-06 23:22:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,175 ms / 2,000 ms
コード長 2,526 bytes
コンパイル時間 5,890 ms
コンパイル使用メモリ 324,856 KB
実行使用メモリ 48,692 KB
最終ジャッジ日時 2024-09-06 23:23:55
合計ジャッジ時間 21,721 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1,175 ms
48,692 KB
testcase_10 AC 1,125 ms
48,568 KB
testcase_11 AC 1,092 ms
48,568 KB
testcase_12 AC 300 ms
18,592 KB
testcase_13 AC 357 ms
20,708 KB
testcase_14 AC 66 ms
7,736 KB
testcase_15 AC 969 ms
44,000 KB
testcase_16 AC 731 ms
35,728 KB
testcase_17 AC 398 ms
23,448 KB
testcase_18 AC 1,019 ms
41,276 KB
testcase_19 AC 749 ms
37,008 KB
testcase_20 AC 130 ms
11,596 KB
testcase_21 AC 147 ms
12,600 KB
testcase_22 AC 379 ms
21,868 KB
testcase_23 AC 812 ms
40,008 KB
testcase_24 AC 990 ms
44,576 KB
testcase_25 AC 310 ms
20,732 KB
testcase_26 AC 95 ms
9,884 KB
testcase_27 AC 255 ms
18,576 KB
testcase_28 AC 290 ms
17,736 KB
testcase_29 AC 440 ms
22,872 KB
testcase_30 AC 430 ms
23,292 KB
testcase_31 AC 46 ms
6,940 KB
testcase_32 AC 624 ms
34,428 KB
testcase_33 AC 101 ms
11,140 KB
testcase_34 AC 1,122 ms
48,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
using mint = modint998244353;
const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
template<typename T>
std::pair<std::vector<T>, int> compression(std::vector<T>org) {
	auto copy = org;
	std::sort(copy.begin(), copy.end());
	copy.erase(unique(copy.begin(), copy.end()), copy.end());
	for (auto &e : org) {
		e = std::lower_bound(copy.begin(), copy.end(), e) - copy.begin();
	}
	return { org,copy.size() };
}
void invdebug(int x, int y = 1) {
	mint m = x;
	m /= y;
	cout << x << "/" << y << "=" << m.val() << endl;
}
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n; cin >> n;
	vector<int>l(n), r(n);
	rep(i, n) {
		cin >> l[i] >> r[i];
		r[i]++;
	}
	vector<int>c;
	rep(i, n) {
		c.push_back(l[i]);
		c.push_back(r[i]);
	}
	auto compc = compression(c);
	map<int, int>mp, rmp;
	rep(i, c.size())mp[compc.first[i]] = c[i];
	rep(i, c.size())rmp[c[i]] = compc.first[i];
	int sz = compc.second;
	vector<mint>imos(sz), simos(sz + 1);
	rep2(i, 1, n) {
		int x = rmp[l[i]];
		int y = rmp[r[i]];
		mint inv = mint::raw(r[i] - l[i]).inv();
		imos[x] += inv;
		imos[y] -= inv;
	}
	rep(i, sz - 1)imos[i + 1] += imos[i];
	rep(i, sz - 1)imos[i] *= mp[i + 1] - mp[i];
	rep(i, sz)simos[i + 1] += simos[i] + imos[i];

	int st = rmp[l[0]];
	int ed = rmp[r[0]];
	mint ans = 1;
	mint inv = mint::raw(r[0] - l[0]).inv();
	rep2(i, st, ed) {
		{
			mint p = simos[sz] - simos[i + 1];
			mint q = inv * (mp[i + 1] - mp[i]);
			ans += p * q;
		}
		{
			int w = mp[i + 1] - mp[i];
			mint p = simos[i + 1] - simos[i];
			p /= w;
			mint q = inv;
			mint r = mint::raw(w)*(w - 1) / 2;
			//cout << p.val() << endl;
			//cout << q.val() << endl;
			//cout << r.val() << endl;
			ans += p * q * r;
		}

	}
	cout << ans.val() << endl;
	//invdebug(1, 10);
	//invdebug(3, 10);
	//invdebug(45, 1);
	return 0;
}
0