結果

問題 No.2875 What is My Rank?
ユーザー SnowBeenDidingSnowBeenDiding
提出日時 2024-09-06 23:01:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,579 bytes
コンパイル時間 5,492 ms
コンパイル使用メモリ 316,132 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 23:03:42
合計ジャッジ時間 11,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 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,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 284 ms
6,944 KB
testcase_10 AC 276 ms
6,944 KB
testcase_11 AC 266 ms
6,940 KB
testcase_12 AC 102 ms
6,940 KB
testcase_13 AC 113 ms
6,944 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 220 ms
6,940 KB
testcase_16 AC 186 ms
6,940 KB
testcase_17 AC 122 ms
6,944 KB
testcase_18 AC 263 ms
6,944 KB
testcase_19 AC 199 ms
6,944 KB
testcase_20 AC 53 ms
6,944 KB
testcase_21 AC 55 ms
6,944 KB
testcase_22 AC 124 ms
6,940 KB
testcase_23 AC 202 ms
6,940 KB
testcase_24 AC 251 ms
6,944 KB
testcase_25 AC 109 ms
6,944 KB
testcase_26 AC 40 ms
6,944 KB
testcase_27 AC 93 ms
6,944 KB
testcase_28 AC 99 ms
6,944 KB
testcase_29 AC 135 ms
6,940 KB
testcase_30 AC 128 ms
6,940 KB
testcase_31 AC 22 ms
6,948 KB
testcase_32 AC 173 ms
6,940 KB
testcase_33 AC 243 ms
6,944 KB
testcase_34 AC 225 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/all>
#include <bits/stdc++.h>
#define rep(i, a, b) for (ll i = (ll)(a); i < (ll)(b); i++)
using namespace atcoder;
using namespace std;

typedef long long ll;

using mint = modint998244353;

mint f(ll l1, ll r1, ll l2, ll r2) {
    // if (r2 <= l1)
    //     return 0;
    // if (r1 < l2)
    //     return 1;
    mint p = 0;

    vector<pair<ll, ll>> v;

    auto f = [&](ll xi) {
        ll ret = max(0LL, r2 - max(l2 - 1, xi));
        v.emplace_back(xi, ret);
        return;
    };
    f(l1);
    f(l1 + 1);
    f(r1);
    f(r1 + 1);
    f(l2);
    f(l2 + 1);
    f(r2);
    f(r2 + 1);
    sort(v.begin(), v.end());
    rep(i, 0, v.size() - 1) {
        ll x1 = v[i].first, y1 = v[i].second;
        ll x2 = v[i + 1].first, y2 = v[i + 1].second;
        if (x1 < l1)
            continue;
        if (x1 > r1)
            break;
        if (y1 == y2) {
            p += mint(y1) * (x2 - x1);
        } else if (y1 > y2) {
            p += (mint)(y1 + y2 + 1) * (x2 - x1) / 2;
        } else if (y1 < y2) {
            p += (mint)(y1 + y2 - 1) * (x2 - x1) / 2;
        }
    }
    p /= (r1 - l1 + 1) * (r2 - l2 + 1);
    return p;
}

void out(mint n) {
    rep(i, 0, 100) rep(j, 1, 100) {
        mint nw = (mint)i / j;
        if (nw == n) {
            cout << i << "/" << j << endl;
            return;
        }
    }
}

int main() {
    int n;
    cin >> n;
    vector<int> l(n), r(n);
    rep(i, 0, n) { cin >> l[i] >> r[i]; }
    mint ans = 1;
    rep(i, 1, n) { ans += f(l[0], r[0], l[i], r[i]); }
    cout << ans.val() << endl;
    // out(ans);
}
0