結果

問題 No.2875 What is My Rank?
ユーザー hongrockhongrock
提出日時 2024-09-06 23:18:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 564 ms / 2,000 ms
コード長 1,323 bytes
コンパイル時間 2,514 ms
コンパイル使用メモリ 214,856 KB
実行使用メモリ 43,164 KB
最終ジャッジ日時 2024-09-06 23:18:42
合計ジャッジ時間 10,874 ms
ジャッジサーバーID
(参考情報)
judge3 / 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,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 547 ms
43,164 KB
testcase_10 AC 529 ms
43,148 KB
testcase_11 AC 564 ms
43,044 KB
testcase_12 AC 139 ms
17,796 KB
testcase_13 AC 164 ms
17,744 KB
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 511 ms
41,836 KB
testcase_16 AC 331 ms
30,776 KB
testcase_17 AC 220 ms
22,100 KB
testcase_18 AC 444 ms
34,872 KB
testcase_19 AC 364 ms
31,672 KB
testcase_20 AC 68 ms
12,032 KB
testcase_21 AC 75 ms
11,044 KB
testcase_22 AC 175 ms
18,772 KB
testcase_23 AC 395 ms
33,724 KB
testcase_24 AC 494 ms
41,652 KB
testcase_25 AC 171 ms
17,880 KB
testcase_26 AC 52 ms
9,000 KB
testcase_27 AC 126 ms
16,212 KB
testcase_28 AC 132 ms
15,572 KB
testcase_29 AC 206 ms
22,068 KB
testcase_30 AC 208 ms
23,424 KB
testcase_31 AC 26 ms
8,284 KB
testcase_32 AC 336 ms
30,144 KB
testcase_33 AC 134 ms
9,628 KB
testcase_34 AC 547 ms
43,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define pb emplace_back
#define mp make_pair
 
using ll = long long;
using pii = pair<int,int>;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr int N = 2e5 + 10;

int n, l[N], r[N], m, b[N << 1];

ll pow_mod(ll x, ll p){
  ll s = 1;
  while(p){
    if(p & 1) s = s * x % mod;
    x = x * x % mod;
    p >>= 1;
  }
  return s;
}

void _main(){
  cin >> n;
  m = 0;
  unordered_map<int, vector<pii>> g;
  for(int i=1; i<=n; ++i){
    cin >> l[i] >> r[i];
    b[m++] = l[i];
    b[m++] = r[i] + 1;
    if(i > 1){
      g[l[i]].pb(r[i] - l[i] + 1, -1);
      g[r[i] + 1].pb(r[i] - l[i] + 1, 1);
    }
  }
  sort(b, b+m);
  m = unique(b, b+m) - b;
  ll ans = 0;
  ll S = 0;
  ll ext = 0;
  for(int i=m-1; i>=0; --i){
    if(i < m - 1){
      int L = b[i], R = b[i + 1];
      int len = R - L;
      ll q = 1ll * (len - 1) * len / 2 % mod;
      if(l[1] <= L && R - 1 <= r[1]){
        ans = (ans + ext * len + q * S) % mod;
      }
      ext = (ext + len * S) % mod;
    }
    for(auto [len, f] : g[b[i]]){
      S = (S + pow_mod(len, mod - 2) * f % mod + mod) % mod;
    }
  }
  ll p = pow_mod(r[1] - l[1] + 1, mod - 2);
  cout << (ans * p + 1) % mod << '\n';
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0