結果

問題 No.2875 What is My Rank?
ユーザー t98slidert98slider
提出日時 2024-09-08 08:03:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,210 bytes
コンパイル時間 4,652 ms
コンパイル使用メモリ 269,628 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-09-08 08:03:18
合計ジャッジ時間 9,143 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 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,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 206 ms
7,936 KB
testcase_10 AC 187 ms
7,936 KB
testcase_11 AC 187 ms
7,808 KB
testcase_12 AC 59 ms
6,940 KB
testcase_13 AC 66 ms
6,940 KB
testcase_14 AC 17 ms
6,940 KB
testcase_15 AC 166 ms
7,424 KB
testcase_16 AC 129 ms
6,940 KB
testcase_17 AC 77 ms
6,940 KB
testcase_18 AC 174 ms
7,168 KB
testcase_19 AC 133 ms
6,940 KB
testcase_20 AC 32 ms
6,940 KB
testcase_21 AC 35 ms
6,940 KB
testcase_22 AC 71 ms
6,940 KB
testcase_23 AC 146 ms
7,040 KB
testcase_24 AC 169 ms
7,552 KB
testcase_25 AC 66 ms
6,940 KB
testcase_26 AC 25 ms
6,940 KB
testcase_27 AC 58 ms
6,944 KB
testcase_28 AC 56 ms
6,940 KB
testcase_29 AC 76 ms
6,944 KB
testcase_30 AC 76 ms
6,944 KB
testcase_31 AC 14 ms
6,944 KB
testcase_32 AC 121 ms
6,940 KB
testcase_33 AC 91 ms
6,940 KB
testcase_34 AC 186 ms
7,936 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];
        mint len = ca[i] - ca[i - 1];
        if(i <= a[0].second) ans += len * (sv + imos[i] * (len - 1) * div);
        sv += imos[i] * len;
    }
    ans /= ca[a[0].second] - ca[a[0].first];
    cout << ans.val() << '\n';
}
0