結果

問題 No.880 Yet Another Segment Tree Problem
ユーザー 👑 hos.lyrichos.lyric
提出日時 2019-09-09 15:18:07
言語 D
(dmd 2.105.2)
結果
TLE  
実行時間 -
コード長 5,363 bytes
コンパイル時間 842 ms
コンパイル使用メモリ 106,992 KB
実行使用メモリ 31,772 KB
最終ジャッジ日時 2023-09-04 02:44:02
合計ジャッジ時間 16,240 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 3 ms
4,380 KB
testcase_03 AC 3 ms
4,376 KB
testcase_04 AC 3 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 3 ms
4,380 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 4 ms
4,376 KB
testcase_10 AC 3 ms
4,376 KB
testcase_11 AC 389 ms
28,272 KB
testcase_12 AC 378 ms
20,264 KB
testcase_13 AC 271 ms
19,820 KB
testcase_14 AC 371 ms
23,516 KB
testcase_15 AC 397 ms
28,752 KB
testcase_16 AC 423 ms
28,924 KB
testcase_17 AC 371 ms
22,892 KB
testcase_18 AC 361 ms
31,772 KB
testcase_19 AC 307 ms
20,252 KB
testcase_20 AC 315 ms
25,912 KB
testcase_21 AC 322 ms
21,296 KB
testcase_22 AC 309 ms
27,568 KB
testcase_23 AC 323 ms
24,768 KB
testcase_24 AC 291 ms
25,748 KB
testcase_25 AC 291 ms
29,064 KB
testcase_26 AC 308 ms
30,424 KB
testcase_27 AC 284 ms
27,260 KB
testcase_28 AC 304 ms
27,276 KB
testcase_29 AC 364 ms
23,472 KB
testcase_30 AC 386 ms
29,820 KB
testcase_31 AC 414 ms
29,096 KB
testcase_32 AC 129 ms
19,932 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.complex, std.container, std.math, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }
real readReal() { return readToken.to!real; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


long gcd(long a, long b) {
  // if (a < 0) a = -a;
  // if (b < 0) b = -b;
  if (a == 0) return b;
  if (b == 0) return a;
  const int s = bsf(a | b);
  a >>= bsf(a);
  do {
    b >>= bsf(b);
    if (a > b) swap(a, b);
    b -= a;
  } while (b);
  return a << s;
}


enum INF = 10L^^9 + 10;

struct T {
  bool same;
  long mx, sum;
  T opBinary(string op)(ref const(T) t) const {
    return T(same && t.same && mx == t.mx,
             max(mx, t.mx),
             sum + t.sum);
  }
};
enum idT = T(true, 0, 0);

T sameOf(long val, int sz) {
  return T(true, val, val * sz);
}

class SegmentTree {
  int n;
  T[] ts;
  long[] ss;
  this(int n_, T[] ini) {
    for (n = 1; n < n_; n <<= 1) {}
    ts = new T[n << 1];
    ts[0 .. n] = idT;
    ts[n .. n + n_] = ini[];
    ts[n + n_ .. n << 1] = idT;
    foreach_reverse (a; 1 .. n) ts[a] = ts[a << 1] * ts[a << 1 | 1];
    ss = new long[n << 1];
    ss[] = -1;
  }

  // x -> val
  private void query1(int u, int l, int r, int a, int b, long val) {
    chmax(a, l);
    chmin(b, r);
    if (a >= b) return;
    if (a == l && b == r) {
      ts[u] = sameOf(val, r - l);
      ss[u] = val;
      return;
    }
    const uL = u << 1, uR = u << 1 | 1, mid = (l + r) >> 1;
    if (ss[u] != -1) {
      ts[uL] = sameOf(ss[u], mid - l);
      ts[uR] = sameOf(ss[u], r - mid);
      ss[uL] = ss[u];
      ss[uR] = ss[u];
      ss[u] = -1;
    }
    query1(uL, l, mid, a, b, val);
    query1(uR, mid, r, a, b, val);
    ts[u] = ts[uL] * ts[uR];
  }
  void query1(int a, int b, long val) {
    query1(1, 0, n, a, b, val);
  }

  // x -> gcd(x, val)
  private void query2(int u, int l, int r, int a, int b, long val) {
    chmax(a, l);
    chmin(b, r);
    if (a >= b) return;
    if (a == l && b == r && ts[u].same) {
      const g = gcd(ts[u].mx, val);
      ts[u] = sameOf(g, r - l);
      ss[u] = g;
      return;
    }
    const uL = u << 1, uR = u << 1 | 1, mid = (l + r) >> 1;
    if (ss[u] != -1) {
      ts[uL] = sameOf(ss[u], mid - l);
      ts[uR] = sameOf(ss[u], r - mid);
      ss[uL] = ss[u];
      ss[uR] = ss[u];
      ss[u] = -1;
    }
    query2(uL, l, mid, a, b, val);
    query2(uR, mid, r, a, b, val);
    ts[u] = ts[uL] * ts[uR];
  }
  void query2(int a, int b, long val) {
    query2(1, 0, n, a, b, val);
  }

  private T query(int u, int l, int r, int a, int b) {
    chmax(a, l);
    chmin(b, r);
    if (a >= b) return idT;
    if (a == l && b == r) return ts[u];
    const uL = u << 1, uR = u << 1 | 1, mid = (l + r) >> 1;
    if (ss[u] != -1) {
      ts[uL] = sameOf(ss[u], mid - l);
      ts[uR] = sameOf(ss[u], r - mid);
      ss[uL] = ss[u];
      ss[uR] = ss[u];
      ss[u] = -1;
    }
    const resL = query(uL, l, mid, a, b);
    const resR = query(uR, mid, r, a, b);
    ts[u] = ts[uL] * ts[uR];
    return resL * resR;
  }
  T query(int a, int b) {
    return query(1, 0, n, a, b);
  }
}


int N, Q;
long[] A;
int[] TYP, L, R;
long[] X;

void main() {
  try {
    for (; ; ) {
      N = readInt();
      Q = readInt();
      A = new long[N];
      foreach (i; 0 .. N) {
        A[i] = readLong();
      }
      TYP = new int[Q];
      L = new int[Q];
      R = new int[Q];
      X = new long[Q];
      foreach (q; 0 .. Q) {
        TYP[q] = readInt();
        L[q] = readInt() - 1;
        R[q] = readInt();
        if (TYP[q] == 1 || TYP[q] == 2) {
          X[q] = readLong();
        }
      }
      
      auto ini = new T[N];
      foreach (i; 0 .. N) {
        ini[i] = sameOf(A[i], 1);
      }
      auto seg = new SegmentTree(N, ini);
      foreach (q; 0 .. Q) {
        switch (TYP[q]) {
          case 1: {
            seg.query1(L[q], R[q], X[q]);
          } break;
          case 2: {
            seg.query2(L[q], R[q], X[q]);
          } break;
          case 3: {
            const res = seg.query(L[q], R[q]);
            writeln(res.mx);
          } break;
          case 4: {
            const res = seg.query(L[q], R[q]);
            writeln(res.sum);
          } break;
          default: assert(false);
        }
        debug {
          for (int a = 1; a <= seg.n; a <<= 1) {
            writeln(seg.ts[a .. a << 1]);
          }
          writeln("ss = ", seg.ss);
        }
      }
    }
  } catch (EOFException e) {
  }
}
0