結果

問題 No.2875 What is My Rank?
ユーザー t98slidert98slider
提出日時 2024-09-08 07:59:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 1,277 bytes
コンパイル時間 4,756 ms
コンパイル使用メモリ 268,608 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-09-08 07:59:20
合計ジャッジ時間 10,399 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 180 ms
8,064 KB
testcase_10 AC 179 ms
7,808 KB
testcase_11 AC 177 ms
7,936 KB
testcase_12 AC 57 ms
6,940 KB
testcase_13 AC 64 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 158 ms
7,424 KB
testcase_16 AC 123 ms
6,940 KB
testcase_17 AC 75 ms
6,944 KB
testcase_18 AC 151 ms
7,168 KB
testcase_19 AC 129 ms
6,944 KB
testcase_20 AC 31 ms
6,940 KB
testcase_21 AC 34 ms
6,944 KB
testcase_22 AC 69 ms
6,940 KB
testcase_23 AC 141 ms
6,940 KB
testcase_24 AC 161 ms
7,552 KB
testcase_25 AC 63 ms
6,940 KB
testcase_26 AC 24 ms
6,944 KB
testcase_27 AC 55 ms
6,944 KB
testcase_28 AC 53 ms
6,940 KB
testcase_29 AC 74 ms
6,944 KB
testcase_30 AC 74 ms
6,940 KB
testcase_31 AC 14 ms
6,940 KB
testcase_32 AC 117 ms
6,944 KB
testcase_33 AC 90 ms
6,940 KB
testcase_34 AC 178 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    vector<pair<int,int>> a(n);
    vector<int> ca(2 * n);
    for(int i = 0; i < n; i++){
        auto &&[l, r] = a[i];
        cin >> l >> r;
        l--;
        ca[2 * i] = l;
        ca[2 * i + 1] = r;
    }
    sort(ca.begin(), ca.end());
    ca.erase(unique(ca.begin(), ca.end()), ca.end());
    const int m = ca.size();
    vector<mint> imos(m);
    for(int i = 0; i < n; i++){
        auto &&[l, r] = a[i];
        mint div = mint(1) / (r - l);
        l = lower_bound(ca.begin(), ca.end(), l) - ca.begin();
        r = lower_bound(ca.begin(), ca.end(), r) - ca.begin();
        if (i == 0) continue;
        imos[r] += div;
        imos[l] -= div;
    }
    mint ans, sv = 1, div = 998244354 / 2;
    for(int i = m - 1; i >= a[0].first + 1; i--){
        imos[i - 1] += imos[i];
        if(i <= a[0].second){
            mint len = ca[i] - ca[i - 1] - 1;
            ans += sv * (ca[i] - ca[i - 1]) + imos[i] * len * (len + 1) * div;
        }
        sv += imos[i] * (ca[i] - ca[i - 1]);
    }
    ans /= ca[a[0].second] - ca[a[0].first];
    cout << ans.val() << '\n';
}
0