結果

問題 No.674 n連勤
ユーザー gyouzasushigyouzasushi
提出日時 2024-06-05 16:52:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 2,627 bytes
コンパイル時間 1,273 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-05 16:52:12
合計ジャッジ時間 3,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 71 ms
5,376 KB
testcase_14 AC 73 ms
5,376 KB
testcase_15 AC 69 ms
5,376 KB
testcase_16 AC 89 ms
5,376 KB
testcase_17 AC 89 ms
5,376 KB
testcase_18 AC 81 ms
5,376 KB
testcase_19 AC 71 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 1 "test/yukicoder/1601.test.cpp"
#define PROBLEM "https://yukicoder.me/problems/1601"

#include <iostream>

#line 2 "datastructure/range_set.hpp"

#include <map>
template <typename T>
struct range_set {
public:
    range_set(bool merge_adjacent = true) : _merge_adjacent(merge_adjacent) {
    }
    typename std::map<T, T>::const_iterator get(T p) const {
        auto it = ranges.upper_bound(p);
        if (it == ranges.begin()) return ranges.end();
        if (std::prev(it)->second < p) return ranges.end();
        return std::prev(it);
    }
    typename std::map<T, T>::const_iterator get(T l, T r) const {
        auto it = get(l);
        if (it == ranges.end()) return ranges.end();
        if (it->second < r) return ranges.end();
        return it;
    }
    void insert(T l, T r) {
        insert(l, r, [](T, T) {});
    }
    template <class F>
    void insert(T l, T r, const F &f) {
        auto it_l = ranges.upper_bound(l);
        auto it_r = ranges.upper_bound(r + T(_merge_adjacent));
        if (it_l != ranges.begin() &&
            l - T(_merge_adjacent) <= std::prev(it_l)->second) {
            it_l--;
        }
        for (auto it = it_l; it != it_r; it = ranges.erase(it)) {
            l = std::min(l, it->first);
            r = std::max(r, it->second);
            f(it->first, it->second);
        }
        ranges[l] = r;
    }
    void erase(T l, T r) {
        erase(l, r, [](T, T) {});
    }
    template <class F>
    void erase(T l, T r, const F &f) {
        auto it_l = ranges.upper_bound(l);
        auto it_r = ranges.upper_bound(r);
        if (it_l != ranges.begin() && l <= std::prev(it_l)->second) {
            it_l--;
        }
        T nl = std::min(l, it_l->first);
        T nr = std::max(r, std::prev(it_r)->second);
        for (auto it = it_l; it != it_r; it = ranges.erase(it)) {
            f(std::max(l, it->first), std::min(it->second));
        }
        if (nl < l) ranges[nl] = l - 1;
        if (r < nr) ranges[r + 1] = nr;
    }
    typename std::map<T, T>::const_iterator begin() const {
        return ranges.begin();
    }
    typename std::map<T, T>::const_iterator end() const {
        return ranges.end();
    }

private:
    std::map<T, T> ranges;
    bool _merge_adjacent;
};
#line 6 "test/yukicoder/1601.test.cpp"
int main() {
    long long d;
    int q;
    std::cin >> d >> q;
    range_set<long long> st;
    long long ans = 0;
    while (q--) {
        long long a, b;
        std::cin >> a >> b;
        st.insert(a, b);
        auto [l, r] = *st.get(a, b);
        ans = std::max(ans, r - l + 1);
        std::cout << ans << '\n';
    }
}
0