Luzhiled's Library

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub ei1333/library

:heavy_check_mark: test/verify/aoj-2450-2.test.cpp

Depends on

Code

// competitive-verifier: PROBLEM http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=2450

#include "../../template/template.hpp"

#include "../../structure/lct/link-cut-tree-lazy-path.hpp"

int main() {
  int N, Q, S[200000];
  cin >> N >> Q;

  struct Node {
    int64 ans, all, left, right, length;

    Node() : ans(-infll), all(0), left(-infll), right(-infll), length(0) {}

    Node(int64 val, int64 len) : length(len) {
      all = val * len;
      ans = left = right = (val > 0 ? all : val);
    }

    Node operator+(const Node &s) const {
      Node ret;
      ret.length = length + s.length;
      ret.ans = max({ans, s.ans, right + s.left});
      ret.all = all + s.all;
      ret.left = max(left, all + s.left);
      ret.right = max(s.right, right + s.all);
      return ret;
    }
  };
  auto F = [](const Node &a, const Node &b) { return a + b; };
  auto G = [](const Node &a, int64 x) { return Node(x, a.length); };
  auto H = [](int64, int64 y) { return y; };
  auto T = [](Node a) {
    swap(a.left, a.right);
    return a;
  };


  auto lct = get_link_cut_tree_lazy_path< Node >(F, G, H, T, infll);
  vector< decltype(lct)::NP > vs(N);

  for(int i = 0; i < N; i++) {
    cin >> S[i];
    vs[i] = lct.alloc(Node(S[i], 1));
  }
  for(int i = 0; i < N - 1; i++) {
    int u, v;
    cin >> u >> v;
    --u, --v;
    lct.evert(vs[v]);
    lct.link(vs[v], vs[u]);
  }
  while(Q--) {
    int X, A, B, C;
    cin >> X >> A >> B >> C;
    --A, --B;
    if(X == 1) {
      lct.set_propagate(vs[A], vs[B], C);
    } else {
      cout << lct.query(vs[A], vs[B]).ans << "\n";
    }
  }
}
#line 1 "test/verify/aoj-2450-2.test.cpp"
// competitive-verifier: PROBLEM http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=2450

#line 1 "template/template.hpp"
#include <bits/stdc++.h>

using namespace std;

using int64 = long long;

const int64 infll = (1LL << 62) - 1;
const int inf = (1 << 30) - 1;

struct IoSetup {
  IoSetup() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(10);
    cerr << fixed << setprecision(10);
  }
} iosetup;

template <typename T1, typename T2>
ostream &operator<<(ostream &os, const pair<T1, T2> &p) {
  os << p.first << " " << p.second;
  return os;
}

template <typename T1, typename T2>
istream &operator>>(istream &is, pair<T1, T2> &p) {
  is >> p.first >> p.second;
  return is;
}

template <typename T>
ostream &operator<<(ostream &os, const vector<T> &v) {
  for (int i = 0; i < (int)v.size(); i++) {
    os << v[i] << (i + 1 != v.size() ? " " : "");
  }
  return os;
}

template <typename T>
istream &operator>>(istream &is, vector<T> &v) {
  for (T &in : v) is >> in;
  return is;
}

template <typename T1, typename T2>
inline bool chmax(T1 &a, T2 b) {
  return a < b && (a = b, true);
}

template <typename T1, typename T2>
inline bool chmin(T1 &a, T2 b) {
  return a > b && (a = b, true);
}

template <typename T = int64>
vector<T> make_v(size_t a) {
  return vector<T>(a);
}

template <typename T, typename... Ts>
auto make_v(size_t a, Ts... ts) {
  return vector<decltype(make_v<T>(ts...))>(a, make_v<T>(ts...));
}

template <typename T, typename V>
typename enable_if<is_class<T>::value == 0>::type fill_v(T &t, const V &v) {
  t = v;
}

template <typename T, typename V>
typename enable_if<is_class<T>::value != 0>::type fill_v(T &t, const V &v) {
  for (auto &e : t) fill_v(e, v);
}

template <typename F>
struct FixPoint : F {
  explicit FixPoint(F &&f) : F(forward<F>(f)) {}

  template <typename... Args>
  decltype(auto) operator()(Args &&...args) const {
    return F::operator()(*this, forward<Args>(args)...);
  }
};

template <typename F>
inline decltype(auto) MFP(F &&f) {
  return FixPoint<F>{forward<F>(f)};
}
#line 4 "test/verify/aoj-2450-2.test.cpp"

#line 1 "structure/lct/link-cut-tree-lazy-path.hpp"
/**
 * @brief Link Cut Tree Lazy Path
 *
 */
template <typename T, typename E, typename F, typename G, typename H,
          typename S>
struct LinkCutTreeLazyPath {
 private:
  F f;
  G g;
  H h;
  S s;
  E e0;

  struct Node {
    Node *l, *r, *p;
    T key, sum;
    E lazy;
    bool rev;
    size_t sz;

    explicit Node(const T &v, const E &e)
        : key(v),
          sum(v),
          lazy(e),
          sz(1),
          rev(false),
          l(nullptr),
          r(nullptr),
          p(nullptr) {}

    bool is_root() const { return not p or (p->l != this and p->r != this); }
  };

 public:
  using NP = Node *;

 private:
  NP update(NP t) {
    t->sz = 1;
    t->sum = t->key;
    if (t->l) t->sz += t->l->sz, t->sum = f(t->l->sum, t->sum);
    if (t->r) t->sz += t->r->sz, t->sum = f(t->sum, t->r->sum);
    return t;
  }

  void rotr(NP t) {
    NP x = t->p, y = x->p;
    if ((x->l = t->r)) t->r->p = x;
    t->r = x, x->p = t;
    update(x), update(t);
    if ((t->p = y)) {
      if (y->l == x) y->l = t;
      if (y->r == x) y->r = t;
      update(y);
    }
  }

  void rotl(NP t) {
    NP x = t->p, y = x->p;
    if ((x->r = t->l)) t->l->p = x;
    t->l = x, x->p = t;
    update(x), update(t);
    if ((t->p = y)) {
      if (y->l == x) y->l = t;
      if (y->r == x) y->r = t;
      update(y);
    }
  }

  void toggle(NP t) {
    swap(t->l, t->r);
    t->sum = s(t->sum);
    t->rev ^= true;
  }

  void propagate(NP t, const E &e) {
    t->lazy = h(t->lazy, e);
    t->key = g(t->key, e);
    t->sum = g(t->sum, e);
  }

  void push(NP t) {
    if (t->lazy != e0) {
      if (t->l) propagate(t->l, t->lazy);
      if (t->r) propagate(t->r, t->lazy);
      t->lazy = e0;
    }
    if (t->rev) {
      if (t->l) toggle(t->l);
      if (t->r) toggle(t->r);
      t->rev = false;
    }
  }

  void splay(NP t) {
    push(t);
    while (not t->is_root()) {
      NP q = t->p;
      if (q->is_root()) {
        push(q), push(t);
        if (q->l == t)
          rotr(t);
        else
          rotl(t);
      } else {
        NP r = q->p;
        push(r), push(q), push(t);
        if (r->l == q) {
          if (q->l == t)
            rotr(q), rotr(t);
          else
            rotl(t), rotr(t);
        } else {
          if (q->r == t)
            rotl(q), rotl(t);
          else
            rotr(t), rotl(t);
        }
      }
    }
  }

 public:
  LinkCutTreeLazyPath(const F &f, const G &g, const H &h, const S &s,
                      const E &e0)
      : f(f), g(g), h(h), s(s), e0(e0) {}

  NP alloc(const T &v = T()) { return new Node(v, e0); }

  vector<NP> build(vector<T> &vs) {
    vector<NP> nodes(vs.size());
    for (int i = 0; i < (int)vs.size(); i++) {
      nodes[i] = alloc(vs[i]);
    }
    return nodes;
  }

  NP expose(NP t) {
    NP rp = nullptr;
    for (NP cur = t; cur; cur = cur->p) {
      splay(cur);
      cur->r = rp;
      update(cur);
      rp = cur;
    }
    splay(t);
    return rp;
  }

  void evert(NP t) {
    expose(t);
    toggle(t);
    push(t);
  }

  void link(NP child, NP parent) {
    if (is_connected(child, parent)) {
      throw runtime_error(
          "child and parent must be different connected components");
    }
    if (child->l) {
      throw runtime_error("child must be root");
    }
    child->p = parent;
    parent->r = child;
    update(parent);
  }

  void cut(NP child) {
    expose(child);
    NP parent = child->l;
    if (not parent) {
      throw runtime_error("child must not be root");
    }
    child->l = nullptr;
    parent->p = nullptr;
    update(child);
  }

  bool is_connected(NP u, NP v) {
    expose(u), expose(v);
    return u == v or u->p;
  }

  NP lca(NP u, NP v) {
    if (not is_connected(u, v)) return nullptr;
    expose(u);
    return expose(v);
  }

  NP get_kth(NP x, int k) {
    expose(x);
    while (x) {
      push(x);
      if (x->r && x->r->sz > k) {
        x = x->r;
      } else {
        if (x->r) k -= x->r->sz;
        if (k == 0) return x;
        k -= 1;
        x = x->l;
      }
    }
    return nullptr;
  }

  const T &query(NP u) {
    expose(u);
    return u->sum;
  }

  const T &query(NP u, NP v) {
    evert(u);
    return query(v);
  }

  void set_key(NP t, T v) {
    expose(t);
    t->key = v;
    update(t);
  }

  void set_propagate(NP t, const E &e) {
    expose(t);
    propagate(t, e);
    push(t);
  }

  void set_propagate(NP u, NP v, const E &e) {
    evert(u);
    set_propagate(v, e);
  }
};

template <typename T, typename E, typename F, typename G, typename H,
          typename S>
LinkCutTreeLazyPath<T, E, F, G, H, S> get_link_cut_tree_lazy_path(
    const F &f, const G &g, const H &h, const S &s, const E &e0) {
  return {f, g, h, s, e0};
}
#line 6 "test/verify/aoj-2450-2.test.cpp"

int main() {
  int N, Q, S[200000];
  cin >> N >> Q;

  struct Node {
    int64 ans, all, left, right, length;

    Node() : ans(-infll), all(0), left(-infll), right(-infll), length(0) {}

    Node(int64 val, int64 len) : length(len) {
      all = val * len;
      ans = left = right = (val > 0 ? all : val);
    }

    Node operator+(const Node &s) const {
      Node ret;
      ret.length = length + s.length;
      ret.ans = max({ans, s.ans, right + s.left});
      ret.all = all + s.all;
      ret.left = max(left, all + s.left);
      ret.right = max(s.right, right + s.all);
      return ret;
    }
  };
  auto F = [](const Node &a, const Node &b) { return a + b; };
  auto G = [](const Node &a, int64 x) { return Node(x, a.length); };
  auto H = [](int64, int64 y) { return y; };
  auto T = [](Node a) {
    swap(a.left, a.right);
    return a;
  };


  auto lct = get_link_cut_tree_lazy_path< Node >(F, G, H, T, infll);
  vector< decltype(lct)::NP > vs(N);

  for(int i = 0; i < N; i++) {
    cin >> S[i];
    vs[i] = lct.alloc(Node(S[i], 1));
  }
  for(int i = 0; i < N - 1; i++) {
    int u, v;
    cin >> u >> v;
    --u, --v;
    lct.evert(vs[v]);
    lct.link(vs[v], vs[u]);
  }
  while(Q--) {
    int X, A, B, C;
    cin >> X >> A >> B >> C;
    --A, --B;
    if(X == 1) {
      lct.set_propagate(vs[A], vs[B], C);
    } else {
      cout << lct.query(vs[A], vs[B]).ans << "\n";
    }
  }
}

Test cases

Env Name Status Elapsed Memory
g++ testcase_00 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_01 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_02 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_03 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_04 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_05 :heavy_check_mark: AC 202 ms 7 MB
g++ testcase_06 :heavy_check_mark: AC 301 ms 19 MB
g++ testcase_07 :heavy_check_mark: AC 417 ms 34 MB
g++ testcase_08 :heavy_check_mark: AC 8 ms 4 MB
g++ testcase_09 :heavy_check_mark: AC 15 ms 5 MB
g++ testcase_10 :heavy_check_mark: AC 119 ms 34 MB
g++ testcase_11 :heavy_check_mark: AC 8 ms 4 MB
g++ testcase_12 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_13 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_14 :heavy_check_mark: AC 9 ms 4 MB
g++ testcase_15 :heavy_check_mark: AC 25 ms 5 MB
g++ testcase_16 :heavy_check_mark: AC 125 ms 6 MB
g++ testcase_17 :heavy_check_mark: AC 204 ms 12 MB
g++ testcase_18 :heavy_check_mark: AC 258 ms 19 MB
g++ testcase_19 :heavy_check_mark: AC 374 ms 34 MB
g++ testcase_20 :heavy_check_mark: AC 8 ms 4 MB
g++ testcase_21 :heavy_check_mark: AC 7 ms 4 MB
g++ testcase_22 :heavy_check_mark: AC 13 ms 5 MB
g++ testcase_23 :heavy_check_mark: AC 76 ms 6 MB
g++ testcase_24 :heavy_check_mark: AC 255 ms 16 MB
g++ testcase_25 :heavy_check_mark: AC 296 ms 34 MB
g++ testcase_26 :heavy_check_mark: AC 8 ms 4 MB
g++ testcase_27 :heavy_check_mark: AC 175 ms 7 MB
g++ testcase_28 :heavy_check_mark: AC 254 ms 19 MB
g++ testcase_29 :heavy_check_mark: AC 362 ms 34 MB
g++ testcase_30 :heavy_check_mark: AC 8 ms 4 MB
g++ testcase_31 :heavy_check_mark: AC 9 ms 4 MB
g++ testcase_32 :heavy_check_mark: AC 34 ms 5 MB
g++ testcase_33 :heavy_check_mark: AC 156 ms 9 MB
g++ testcase_34 :heavy_check_mark: AC 214 ms 19 MB
g++ testcase_35 :heavy_check_mark: AC 348 ms 32 MB
g++ testcase_36 :heavy_check_mark: AC 391 ms 33 MB
g++ testcase_37 :heavy_check_mark: AC 382 ms 34 MB
g++ testcase_38 :heavy_check_mark: AC 383 ms 34 MB
clang++ testcase_00 :heavy_check_mark: AC 6 ms 4 MB
clang++ testcase_01 :heavy_check_mark: AC 6 ms 4 MB
clang++ testcase_02 :heavy_check_mark: AC 6 ms 4 MB
clang++ testcase_03 :heavy_check_mark: AC 6 ms 4 MB
clang++ testcase_04 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_05 :heavy_check_mark: AC 205 ms 6 MB
clang++ testcase_06 :heavy_check_mark: AC 307 ms 19 MB
clang++ testcase_07 :heavy_check_mark: AC 444 ms 34 MB
clang++ testcase_08 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_09 :heavy_check_mark: AC 14 ms 4 MB
clang++ testcase_10 :heavy_check_mark: AC 123 ms 34 MB
clang++ testcase_11 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_12 :heavy_check_mark: AC 6 ms 4 MB
clang++ testcase_13 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_14 :heavy_check_mark: AC 8 ms 4 MB
clang++ testcase_15 :heavy_check_mark: AC 25 ms 4 MB
clang++ testcase_16 :heavy_check_mark: AC 126 ms 5 MB
clang++ testcase_17 :heavy_check_mark: AC 206 ms 11 MB
clang++ testcase_18 :heavy_check_mark: AC 260 ms 19 MB
clang++ testcase_19 :heavy_check_mark: AC 357 ms 34 MB
clang++ testcase_20 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_21 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_22 :heavy_check_mark: AC 13 ms 4 MB
clang++ testcase_23 :heavy_check_mark: AC 76 ms 5 MB
clang++ testcase_24 :heavy_check_mark: AC 256 ms 15 MB
clang++ testcase_25 :heavy_check_mark: AC 300 ms 34 MB
clang++ testcase_26 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_27 :heavy_check_mark: AC 175 ms 6 MB
clang++ testcase_28 :heavy_check_mark: AC 259 ms 19 MB
clang++ testcase_29 :heavy_check_mark: AC 356 ms 34 MB
clang++ testcase_30 :heavy_check_mark: AC 7 ms 4 MB
clang++ testcase_31 :heavy_check_mark: AC 8 ms 4 MB
clang++ testcase_32 :heavy_check_mark: AC 33 ms 4 MB
clang++ testcase_33 :heavy_check_mark: AC 155 ms 9 MB
clang++ testcase_34 :heavy_check_mark: AC 216 ms 19 MB
clang++ testcase_35 :heavy_check_mark: AC 302 ms 32 MB
clang++ testcase_36 :heavy_check_mark: AC 301 ms 33 MB
clang++ testcase_37 :heavy_check_mark: AC 333 ms 34 MB
clang++ testcase_38 :heavy_check_mark: AC 324 ms 34 MB
Back to top page