結果

問題 No.880 Yet Another Segment Tree Problem
ユーザー naoya_tnaoya_t
提出日時 2020-01-03 23:42:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,281 ms / 5,000 ms
コード長 10,777 bytes
コンパイル時間 3,438 ms
コンパイル使用メモリ 202,828 KB
実行使用メモリ 148,440 KB
最終ジャッジ日時 2023-10-24 02:51:57
合計ジャッジ時間 83,928 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 9 ms
4,348 KB
testcase_02 AC 10 ms
4,348 KB
testcase_03 AC 11 ms
4,348 KB
testcase_04 AC 8 ms
4,348 KB
testcase_05 AC 10 ms
4,456 KB
testcase_06 AC 6 ms
4,348 KB
testcase_07 AC 11 ms
4,588 KB
testcase_08 AC 11 ms
4,604 KB
testcase_09 AC 10 ms
4,348 KB
testcase_10 AC 11 ms
4,528 KB
testcase_11 AC 3,728 ms
121,760 KB
testcase_12 AC 3,785 ms
127,736 KB
testcase_13 AC 2,794 ms
116,680 KB
testcase_14 AC 3,212 ms
142,548 KB
testcase_15 AC 3,266 ms
142,816 KB
testcase_16 AC 3,504 ms
144,400 KB
testcase_17 AC 4,142 ms
148,440 KB
testcase_18 AC 4,281 ms
148,440 KB
testcase_19 AC 2,731 ms
142,376 KB
testcase_20 AC 3,171 ms
147,836 KB
testcase_21 AC 3,209 ms
139,052 KB
testcase_22 AC 2,851 ms
144,892 KB
testcase_23 AC 3,236 ms
140,192 KB
testcase_24 AC 2,148 ms
101,892 KB
testcase_25 AC 2,184 ms
105,852 KB
testcase_26 AC 2,179 ms
99,780 KB
testcase_27 AC 2,088 ms
103,740 KB
testcase_28 AC 2,322 ms
100,308 KB
testcase_29 AC 3,216 ms
142,548 KB
testcase_30 AC 3,171 ms
142,816 KB
testcase_31 AC 3,477 ms
144,400 KB
testcase_32 AC 1,614 ms
81,300 KB
testcase_33 AC 2,254 ms
81,828 KB
testcase_34 AC 2,406 ms
82,620 KB
testcase_35 AC 2,272 ms
81,828 KB
testcase_36 AC 2,326 ms
83,412 KB
testcase_37 AC 2,239 ms
82,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define NDEBUG
#include <cassert>


typedef long long ll;
typedef long double Double;
typedef unsigned long long ull;
typedef pair<int,int> ii;
typedef pair<ll,ll> llll;
typedef pair<double,double> dd;

typedef vector<int> vi;
typedef vector<vector<int>> vvi;
typedef vector<ii> vii;
typedef vector<vector<ii>> vvii;
typedef vector<ll> vll;
typedef vector<vector<ll>> vvll;
typedef vector<llll> vllll;
typedef vector<bool> vb;
typedef vector<string> vs;
typedef vector<double> vd;
typedef vector<long double> vD;

#define sz(a)  int((a).size())
#define pb  push_back
#define eb  emplace_back
#define FOR(var,from,to) for(int var=(from);var<=(to);++var)
#define rep(var,n)  for(int var=0;var<(n);++var)
#define rep1(var,n)  for(int var=1;var<=(n);++var)
#define repC2(vari,varj,n)  for(int vari=0;vari<(n)-1;++vari)for(int varj=vari+1;varj<(n);++varj)
#define repC3(vari,varj,vark,n)  for(int vari=0;vari<(n)-2;++vari)for(int varj=vari+1;varj<(n)-1;++varj)for(int vark=varj+1;vark<(n);++vark)
#define ALL(c)  (c).begin(),(c).end()
#define RALL(c)  (c).rbegin(),(c).rend()
#define tr(i,c)  for(auto i=(c).begin(); i!=(c).end(); ++i)
#define found(s,e)  ((s).find(e)!=(s).end())
#define mset(arr,val)  memset(arr,val,sizeof(arr))
#define mid(x,y) ((x)+((y)-(x))/2)
#define IN(x,a,b) ((a)<=(x)&&(x)<=(b))
#define cons make_pair
#define clamp(v,lo,hi) min(max(v,lo),hi)

template<typename T1, typename T2> inline void amin(T1 & a, T2 const & b) { if (a>b) a=b; }
template<typename T1, typename T2> inline void amax(T1 & a, T2 const & b) { if (a<b) a=b; }
template<typename X, typename T> auto vectors(X x, T a) { return vector<T>(x, a); }
template<typename X, typename Y, typename Z, typename... Zs> auto vectors(X x, Y y, Z z, Zs... zs) { auto cont = vectors(y, z, zs...); return vector<decltype(cont)>(x, cont); }

inline ll square(ll x) { return x * x; }
inline ll gcd(ll a, ll b) { while(a) swap(a, b%=a); return b; }
template <typename T>
inline T mod(T a, T b) { return ((a % b) + b) % b; }

template <typename T>
int find_left(vector<T>& v, T elem) {
    return (int)(upper_bound(v.begin(), v.end(), elem) - v.begin()) - 1;
}
template <typename T>
int find_right(vector<T>& v, T elem) {
    return (int)(lower_bound(v.begin(), v.end(), elem) - v.begin());
}

const ll MOD=1000000007LL;

inline ll ADD(ll x, ll y) { return (x+y) % MOD; }
inline ll SUB(ll x, ll y) { return (x-y+MOD) % MOD; }
inline ll MUL(ll x, ll y) { return x*y % MOD; }
inline ll POW(ll x, ll e) { ll v=1; for(; e; x=MUL(x,x), e>>=1) if (e&1) v = MUL(v,x); return v; }
inline ll INV(ll y) { /*assert(y%MOD!=0);*/ return POW(y, MOD-2); }
inline ll DIV(ll x, ll y) { return MUL(x, INV(y)); }

#define INTSPACE 12
char _buf[INTSPACE*1000000 + 3];

int loadint() {
    if (fgets(_buf, INTSPACE+3, stdin)==NULL) return 0;
    return atoi(_buf);
}

int loadvec(vector<int>& v, int N=-1) {
    if (N == 0) {
        v.clear();
        return 0;
    }
    if (N == -1) {
        N = loadint();
        if (N==0) return 0;
    }
    int bufsize = INTSPACE*N + 3;
    if (fgets(_buf, bufsize, stdin)==NULL) return 0;
    v.resize(N);

    int i=0;
    bool last = false;
    for (char *p=&_buf[0]; ;) {
        char *q = p;
        while (*q > ' ') ++q;
        if (*q == 0x0D || *q == 0x0A) last = true;
        *q = 0;
        v[i++] = atoi(p);
        if (last || i == N) break;
        p = q+1;
    }
    return i;
}
void read_cr() {
    fgets(_buf, 256, stdin);
}



template <typename Elem, typename LazyOperand>
class LazySegmentTree {
 public:
    Elem (*f)(Elem& a, Elem& b);
    void (*g)(Elem& a, LazyOperand& b);
    void (*h)(LazyOperand& a, LazyOperand& b);
    using fTYPE = decltype(f);
    using gTYPE = decltype(g);
    using hTYPE = decltype(h);

    Elem elem_ident;
    LazyOperand lazy_operand_ident;
    vector<Elem> elems;
    vector<LazyOperand> lazy_operands;
    int n, height;

    LazySegmentTree(fTYPE f, gTYPE g, hTYPE h,
                    Elem elem_ident, LazyOperand lazy_operand_ident)
        : f(f), g(g), h(h),
          elem_ident(elem_ident), lazy_operand_ident(lazy_operand_ident) {}

    void init(int n_temp) {
        n = 1; height = 0;
        while (n < n_temp) { n <<= 1; ++height; }
        elems.assign(2*n, elem_ident);
        lazy_operands.assign(2*n, lazy_operand_ident);
    }

    void build(const vector<Elem>& v){
        int n_temp = v.size();
        init(n_temp);
        rep(i,n_temp) elems[n+i] = v[i];
        for (int i=n-1; i>0; --i) {
            elems[i] = (*f)(elems[i*2], elems[i*2+1]);
        }
    }

    inline void assign_merged_lazy(int dest, LazyOperand& x) {
        (*h)(lazy_operands[dest], x);
    }

    inline void reflect(int k){
        if (lazy_operands[k] != lazy_operand_ident) {
            (*g)(elems[k], lazy_operands[k]);
        }
    }

    inline void _eval(int k){
        if (lazy_operands[k] != lazy_operand_ident) {
            assign_merged_lazy(k*2, lazy_operands[k]);
            assign_merged_lazy(k*2+1, lazy_operands[k]);

            /*elems[k] =*/ reflect(k);
            lazy_operands[k] = lazy_operand_ident;
        }
    }

    inline void eval_down(int k) {
        for (int i=height; i>0; --i) {
            _eval(k >> i);
        }
    }

    inline void recalc(int k) {
        while (k >>= 1) {
            reflect(k*2); reflect(k*2+1);
            elems[k] = (*f)(elems[k*2], elems[k*2+1]);
        }
    }

    void update(int a, int b, LazyOperand& x) {
        a += n; b += n;
        eval_down(a);
        eval_down(b-1);
        for (int l=a,r=b; l<r; l>>=1,r>>=1) {
            if (l & 1) assign_merged_lazy(l++, x);
            if (r & 1) assign_merged_lazy(--r, x);
        }
        recalc(a);
        recalc(b-1);
    }

    void set_val(int a, Elem e) {
        a += n;
        eval_down(a);
        elems[a] = e;
        lazy_operands[a] = lazy_operand_ident;
        recalc(a);
    }

    Elem query(int a, int b) {
        a += n; b += n;
        eval_down(a);
        eval_down(b-1);
        Elem vl = elem_ident, vr = elem_ident;
        for (int l=a,r=b; l<r; l>>=1,r>>=1) {
            if (l & 1) {
                reflect(l);
                vl = (*f)(vl, elems[l]);
                ++l;
            }
            if (r & 1) {
                --r;
                reflect(r);
                vr = (*f)(elems[r], vr);
            }
        }
        return move((*f)(vl, vr));
    }

    void desc() {
    }
};


template <typename T>
class MyLazySegTree {
    using Map = unordered_map<T,int>;
    using Elem = pair<pair<T,T>, Map>;
    using LazyOp = pair<int,T>;
    using LazyOperand = vector<LazyOp>;
    using Monoid = pair<Elem,int>;

    static Monoid f(Monoid& a, Monoid& b) {
        Monoid res;
        for (auto& p: a.first.second) {
            res.first.second[p.first] += p.second;
            res.first.first.first += p.first * p.second;
            amax(res.first.first.second, p.first);
        }
        for (auto& p: b.first.second) {
            res.first.second[p.first] += p.second;
            res.first.first.first += p.first * p.second;
            amax(res.first.first.second, p.first);
        }
        res.second = a.second + b.second;
        return move(res);
    }
    static void g(Monoid& a, LazyOperand& b) {
        int mag = a.second;
        for (LazyOp& op: b) {
            T k = op.second;
            if (op.first) {
                a.first.second.clear();
                a.first.second[k] = mag;
                a.first.first.first = k*mag;
                a.first.first.second = k;
            } else {
                Map tmp;
                a.first.first.first = a.first.first.second = 0;
                for (auto& p: a.first.second) {
                    T g = gcd(p.first, k);
                    tmp[g] += p.second;
                    a.first.first.first += g * p.second;
                    amax(a.first.first.second, g);
                }
                a.first.second = tmp;
            }
        }
    }
    static void h(LazyOperand& a, LazyOperand& b) {
        int al = a.size(), bl = b.size();
        int a_assign = -1;
        rep(i,al){
            if (a[i].first) { a_assign = i; break; }
        }
        rep(i,bl){
            if (b[i].first) {
                a.assign(1, b[i]);
            } else {
                if (!a.empty() && !a.back().first) {
                    a.back().second = gcd(a.back().second, b[i].second);
                } else {
                    a.pb(b[i]);
                }
            }
        }
    }
public:
    LazySegmentTree<Monoid, LazyOperand> *st = nullptr;
public:
    MyLazySegTree(int size) {
        this->st = new LazySegmentTree<Monoid, LazyOperand>(
                     &f, &g, &h, Monoid(Elem(),1), vector<LazyOp>() );
        this->st->build(vector<Monoid>(size, Monoid(Elem(),1)));
    }
    MyLazySegTree(vector<T>& ar) {
        this->st = new LazySegmentTree<Monoid, LazyOperand>(
                     &f, &g, &h, Monoid(Elem(),1), vector<LazyOp>() );
        vector<Monoid> tmp(ar.size());
        rep(i, ar.size()) {
            tmp[i] = Monoid(Elem(make_pair(ar[i], ar[i]), {{ar[i], 1}}), 1);
        }
        this->st->build(tmp);
    }
    virtual ~MyLazySegTree() { if (st != nullptr) delete st; }

public:
    void assign(int l, int r, T x) {
        LazyOperand op { LazyOp(1,x) };
        st->update(l, r, op);
    }
    void update_gcd(int l, int r, T x){
        LazyOperand op { LazyOp(0,x) };
        st->update(l, r, op);
    }
    T query_sum(int l, int r) { return st->query(l, r).first.first.first; }
    T query_max(int l, int r) { return st->query(l, r).first.first.second; }
};

inline vll vi2vll(vi& orig) {
    int L = orig.size();
    vll dest(L);
    rep(i, L) dest[i] = (ll)orig[i];
    return dest;
}

int main() {
    int N, Q; scanf("%d %d%*c", &N, &Q);
    vi a(N); loadvec(a,N);
    vll aLL = vi2vll(a);
    MyLazySegTree<ll> st(aLL);
    rep(i,Q){
        int op, l, r, x;
        scanf("%d ", &op);
        switch (op) {
            case 1:
            {
                scanf("%d %d %d%*c", &l, &r, &x); --l;
                st.assign(l, r, x);
                break;
            }
            case 2:
            {
                scanf("%d %d %d%*c", &l, &r, &x); --l;
                st.update_gcd(l, r, x);
                break;
            }
            case 3:
            {
                scanf("%d %d%*c", &l, &r); --l;
                ll y = st.query_max(l, r);
                printf("%lld\n", y);
                break;
            }
            case 4:
            {
                scanf("%d %d%*c", &l, &r); --l;
                ll y = st.query_sum(l, r);
                printf("%lld\n", y);
                break;
            }
        }
    }
    return 0;
}
0