結果

問題 No.674 n連勤
ユーザー dkknkdkknk
提出日時 2024-07-30 22:36:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,493 bytes
コンパイル時間 2,265 ms
コンパイル使用メモリ 180,064 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-30 22:36:29
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 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 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 8 ms
6,940 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 90 ms
6,948 KB
testcase_14 AC 72 ms
6,940 KB
testcase_15 AC 66 ms
6,940 KB
testcase_16 AC 84 ms
6,944 KB
testcase_17 AC 84 ms
6,940 KB
testcase_18 AC 77 ms
6,944 KB
testcase_19 AC 71 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,j,n) for(ll i=j;i<(ll)(n);i++)

using namespace std;
typedef long long ll;

struct interval_set{
    interval_set(){
        st.insert(make_pair(-(1LL << 60),-(1LL << 60)));
        st.insert(make_pair(1LL << 60,1LL << 60));
    }
    void insert(ll l,ll r){
        auto iter = st.lower_bound(make_pair(l,r));
        vector<pair<ll,ll>> erase_vec;

        ll left = l,right = r;
        for(auto iter_ = iter;;iter_++){
            if(max(iter_->first,left) > min(iter_->second,right)) break;
            erase_vec.push_back(*iter_);
            left = min(left,iter_->first);
            right = max(right,iter_->second);
        }
        iter--;
        for(auto iter_ = iter;;iter_--){
            if(max(iter_->first,left) > min(iter_->second,right)) break;
            erase_vec.push_back(*iter_);
            left = min(left,iter_->first);
            right = max(right,iter_->second);
        }

        for(auto _ : erase_vec)
            st.erase(_);
            
        st.insert(make_pair(left,right));
        max_len = max(max_len,right - left);
    }

    ll max_length(){
        return max_len;
    }


    set<pair<ll,ll>> st;
    ll max_len = 0;
};

int main(){
    cin.tie(nullptr);
    cout << fixed << setprecision(20);

    ll d,q; cin >> d >> q;
    vector<ll> a(q),b(q);
    rep(i,0,q) cin >> a[i] >> b[i];
    interval_set is;
    rep(i,0,q){
        is.insert(a[i],b[i]+1);
        cout << is.max_length() << endl;
    }
}

0