結果

問題 No.2875 What is My Rank?
ユーザー kwm_tkwm_t
提出日時 2024-09-06 23:19:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 2,528 bytes
コンパイル時間 5,931 ms
コンパイル使用メモリ 322,200 KB
実行使用メモリ 48,828 KB
最終ジャッジ日時 2024-09-06 23:19:51
合計ジャッジ時間 22,739 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1,065 ms
48,568 KB
testcase_10 RE -
testcase_11 AC 1,035 ms
48,692 KB
testcase_12 AC 294 ms
18,596 KB
testcase_13 AC 344 ms
20,580 KB
testcase_14 AC 67 ms
7,736 KB
testcase_15 AC 904 ms
44,000 KB
testcase_16 AC 682 ms
35,728 KB
testcase_17 AC 402 ms
23,576 KB
testcase_18 AC 1,030 ms
41,284 KB
testcase_19 AC 752 ms
37,140 KB
testcase_20 AC 131 ms
11,600 KB
testcase_21 AC 140 ms
12,596 KB
testcase_22 AC 389 ms
21,876 KB
testcase_23 RE -
testcase_24 AC 947 ms
44,576 KB
testcase_25 AC 321 ms
20,856 KB
testcase_26 AC 95 ms
9,876 KB
testcase_27 AC 261 ms
18,444 KB
testcase_28 AC 292 ms
17,740 KB
testcase_29 AC 456 ms
22,872 KB
testcase_30 RE -
testcase_31 AC 46 ms
7,168 KB
testcase_32 AC 681 ms
34,428 KB
testcase_33 AC 101 ms
11,016 KB
testcase_34 AC 1,058 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 + 1)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