結果

問題 No.2875 What is My Rank?
ユーザー karinohitokarinohito
提出日時 2024-09-06 22:42:29
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,132 ms
コンパイル使用メモリ 207,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 22:43:03
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 32
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/modint>
using namespace atcoder;
using mint=modint998244353;
using namespace std;
using ll=long long;


int main() {
    ll N;
    cin>>N;
    vector<ll> L(N),R(N);
    mint an=0;
    for(int i=0;i<N;i++){
        cin>>L[i]>>R[i];
        if(i!=0){
            bool rv=0;
            if(R[i]<R[0]){
                rv=1;
                swap(R[i],R[0]);
                swap(L[i],L[0]);
            }
            ll sm=min(R[i],R[0])-max(L[i],L[0])+1;
            sm=max(0ll,sm);
            mint res=0;
            res+=mint(max(0ll,min(L[i],R[0]+1)-L[0]))*(R[i]-L[i]+1);
            ll lf=max(L[i],L[0]);
            ll ri=min(R[i],R[0]);
            if(ri>=lf){
                res+=mint(ri-lf+1)*R[i];
                res-=ri*(ri+1)/2;
                res+=lf*(lf-1)/2;
            }
            
            if(rv){
                swap(R[i],R[0]);
                swap(L[i],L[0]);
                res=mint(R[i]-L[i]+1)*mint(R[0]-L[0]+1)-res-sm;
            }
            an+=res/mint(R[i]-L[i]+1);
        }
    }
    an/=mint(R[0]-L[0]+1);
    an+=1;
    cout<<an.val()<<endl;
}
0