結果

問題 No.2697 Range LIS Query
ユーザー ooaiuooaiu
提出日時 2024-10-05 17:35:44
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 10,000 ms
コード長 1,532 bytes
コンパイル時間 2,706 ms
コンパイル使用メモリ 254,240 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2024-10-05 17:35:54
合計ジャッジ時間 6,422 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 6 ms
5,248 KB
testcase_04 AC 7 ms
5,248 KB
testcase_05 AC 7 ms
5,248 KB
testcase_06 AC 235 ms
27,768 KB
testcase_07 AC 235 ms
27,648 KB
testcase_08 AC 237 ms
27,648 KB
testcase_09 AC 199 ms
27,776 KB
testcase_10 AC 185 ms
27,776 KB
testcase_11 AC 182 ms
27,632 KB
testcase_12 AC 145 ms
26,752 KB
testcase_13 AC 164 ms
25,584 KB
testcase_14 AC 218 ms
25,600 KB
testcase_15 AC 268 ms
27,776 KB
testcase_16 AC 264 ms
27,776 KB
testcase_17 AC 259 ms
27,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#include <atcoder/lazysegtree>
constexpr int N = 4;
struct S {
  int len{};
  array<array<int, N>, N> d{};
};
S e() { return S{}; }
S op(S a, S b) {
  S ret = e();
  ret.len = a.len + b.len;
  for (int i = 0; i < N; i++) {
    for (int j = i; j < N; j++) {
      for (int k = i; k <= j; k++) {
        ret.d[i][j] = max(ret.d[i][j], a.d[i][k] + b.d[k][j]);
      }
    }
  }
  return ret;
}
using F = int;
F id() { return -1; }
S mp(F f, S x) {
  if (f == id())
    return x;
  S ret = e();
  ret.len = x.len;
  f--;
  for (int i = 0; i <= f; i++) {
    for (int j = f; j < N; j++) {
      ret.d[i][j] = x.len;
    }
  }
  return ret;
}
F cmp(F f, F g) { return (f == id() ? g : f); }

int main() {
  constexpr char endl = '\n';
  std::ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  int n;
  cin >> n;
  vector<S> init(n);
  for (int i = 0; i < n; i++) {
    int a;
    cin >> a;
    a--;
    init[i].len = 1;
    for (int j = 0; j <= a; j++) {
      for (int k = a; k < N; k++) {
        init[i].d[j][k] = 1;
      }
    }
  }
  atcoder::lazy_segtree<S, op, e, F, mp, cmp, id> seg(init);
  int q;
  cin >> q;
  while (q--) {
    int t;
    cin >> t;
    int l, r;
    cin >> l >> r;
    l--;
    if (t == 1) {
      S ret = seg.prod(l, r);
      int ans = 0;
      for (int i = 0; i < N; i++)
        for (int j = i; j < N; j++)
          ans = max(ans, ret.d[i][j]);
      cout << ans << endl;
    } else {
      int x;
      cin >> x;
      seg.apply(l, r, x);
    }
  }
}
0