結果

問題 No.631 Noelちゃんと電車旅行
ユーザー ikdikd
提出日時 2018-01-07 02:43:25
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 1,647 bytes
コンパイル時間 689 ms
コンパイル使用メモリ 101,268 KB
実行使用メモリ 12,180 KB
最終ジャッジ日時 2024-06-12 23:21:03
合計ジャッジ時間 5,666 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
10,812 KB
testcase_01 AC 274 ms
11,476 KB
testcase_02 AC 266 ms
11,944 KB
testcase_03 AC 259 ms
11,060 KB
testcase_04 AC 264 ms
12,180 KB
testcase_05 AC 264 ms
11,156 KB
testcase_06 AC 103 ms
6,944 KB
testcase_07 AC 52 ms
7,316 KB
testcase_08 AC 216 ms
10,644 KB
testcase_09 AC 228 ms
6,940 KB
testcase_10 AC 156 ms
11,672 KB
testcase_11 AC 143 ms
9,036 KB
testcase_12 AC 173 ms
10,640 KB
testcase_13 AC 165 ms
6,940 KB
testcase_14 AC 73 ms
6,940 KB
testcase_15 AC 138 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

void main(){
  import std.stdio, std.string, std.conv, std.algorithm;
  import std.exception;

  int n; rd(n);
  auto t=readln.split.to!(long[]);
  enforce(t.length==n-1);

  auto st=new LSegT(t);
  int q; rd(q);
  while(q--){
    int l, r; long d; rd(l, r, d);
    st.radd(l-1, r, d);
    writeln(st.rmax(0, n-1));
  }
}

class LSegT{
  static int sz=1;
  long[] seg, laz;
  import std.algorithm;
  this(long[] a){
    import std.conv;
    auto n=to!int(a.length);
    while(sz<n) sz*=2;
    seg.length=laz.length=(sz*2-1);
    foreach(i; 0..n) seg[i+sz-1]=a[i]+(n-i)*3;
    for(auto i=sz-2; i>=0; i--)
      seg[i]=max(seg[i*2+1], seg[i*2+2]);
  }

  void fix(int i, long x){
    laz[i]+=x;
    seg[i]+=x;
  }

  void push(int i){
    if(laz[i]>0){
      fix(i*2+1, laz[i]);
      fix(i*2+2, laz[i]);
      laz[i]=0;
    }
  }

  void radd(int l, int r, long x, int i=0, int il=0, int ir=sz){
    if(ir<=l || r<=il) return;
    if(l<=il && ir<=r){fix(i, x); return;}
    push(i);
    auto m=(il+ir)/2;
    radd(l, r, x, i*2+1, il, m);
    radd(l, r, x, i*2+2, m, ir);
    seg[i]=max(seg[i*2+1], seg[i*2+2]);
  }

  long rmax(int l, int r, int i=0, int il=0, int ir=sz){
    if(ir<=l || r<=il) return -1;
    if(l<=il && ir<=r) return seg[i];
    push(i);
    auto m=(il+ir)/2,
         vl=rmax(l, r, i*2+1, il, m),
         vr=rmax(l, r, i*2+2, m, ir);
    return max(vl, vr);
  }
}

void rd(T...)(ref T x){
  import std.stdio, std.string, std.conv;
  auto l=readln.split;
  assert(l.length==x.length);
  foreach(i, ref e; x){
    e=l[i].to!(typeof(e));
  }
}
void wr(T...)(T x){
  import std.stdio;
  foreach(e; x) write(e, " ");
  writeln();
}
0