結果

問題 No.2901 Logical Sum of Substring
ユーザー hitonanodehitonanode
提出日時 2024-09-21 22:19:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 349 ms / 3,000 ms
コード長 1,923 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 130,084 KB
実行使用メモリ 88,808 KB
最終ジャッジ日時 2024-09-21 22:20:06
合計ジャッジ時間 11,608 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 275 ms
88,808 KB
testcase_09 AC 280 ms
88,680 KB
testcase_10 AC 276 ms
88,808 KB
testcase_11 AC 319 ms
88,808 KB
testcase_12 AC 294 ms
88,804 KB
testcase_13 AC 309 ms
88,680 KB
testcase_14 AC 304 ms
88,808 KB
testcase_15 AC 349 ms
88,808 KB
testcase_16 AC 339 ms
88,764 KB
testcase_17 AC 283 ms
88,552 KB
testcase_18 AC 283 ms
88,680 KB
testcase_19 AC 298 ms
88,808 KB
testcase_20 AC 288 ms
88,808 KB
testcase_21 AC 289 ms
88,548 KB
testcase_22 AC 292 ms
88,736 KB
testcase_23 AC 285 ms
88,680 KB
testcase_24 AC 269 ms
88,680 KB
testcase_25 AC 270 ms
88,676 KB
testcase_26 AC 292 ms
85,992 KB
testcase_27 AC 283 ms
85,868 KB
testcase_28 AC 299 ms
85,992 KB
testcase_29 AC 263 ms
87,272 KB
testcase_30 AC 280 ms
87,404 KB
testcase_31 AC 266 ms
87,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <utility>
#include <vector>
using namespace std;
template <typename T> bool chmax(T &m, const T q) { return m < q ? (m = q, true) : false; }
template <typename T> bool chmin(T &m, const T q) { return m > q ? (m = q, true) : false; }

#include <atcoder/segtree>

constexpr int inf = 1 << 28;
int K;
int full;

struct S {
    int len = 0;
    int ans = inf;

    vector<pair<int, int>> left_cs, right_cs;

    static S gen(int a) { return S{1, (a == full ? 1 : inf), {{1, a}}, {{1, a}}}; }

    static vector<pair<int, int>> merge(const vector<pair<int, int>> &v1, const vector<pair<int, int>> &v2, int len1) {
        auto ret = v1;
        int mask = v1.empty() ? 0 : v1.back().second;
        for (auto [k, v] : v2) {
            if (chmax(mask, mask | v)) ret.emplace_back(k + len1, mask);
        }

        return ret;
    }
};

S op(S l, S r) {
    auto len = l.len + r.len;
    auto left_cs = S::merge(l.left_cs, r.left_cs, l.len);
    auto right_cs = S::merge(r.right_cs, l.right_cs, r.len);
    int ans = min(l.ans, r.ans);

    for (auto [k1, v1] : l.right_cs) {
        for (auto [k2, v2] : r.left_cs) {
            if ((v1 | v2) == full) {
                chmin(ans, k1 + k2);
                break;
            }
        }
    }

    return S{len, ans, move(left_cs), move(right_cs)};
}

S e() { return S(); }

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);

    int N;
    cin >> N >> K;
    full = (1 << K) - 1;

    vector<S> init;
    while (N--) {
        int a;
        cin >> a;
        init.emplace_back(S::gen(a));
    }

    int Q;
    cin >> Q;
    atcoder::segtree<S, op, e> seg(init);

    while (Q--) {
        int tp, l, r;
        cin >> tp >> l >> r;
        --l;

        if (tp == 1) {
            seg.set(l, S::gen(r));
        } else {
            auto p = seg.prod(l, r).ans;
            cout << (p == inf ? -1 : p) << '\n';
        }
    }
}
0