結果

問題 No.631 Noelちゃんと電車旅行
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2018-01-05 22:45:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 3,248 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 77,852 KB
実行使用メモリ 96,964 KB
最終ジャッジ日時 2024-10-02 09:28:22
合計ジャッジ時間 16,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
75,476 KB
testcase_01 AC 974 ms
96,964 KB
testcase_02 AC 938 ms
90,792 KB
testcase_03 AC 951 ms
90,648 KB
testcase_04 AC 910 ms
90,824 KB
testcase_05 AC 924 ms
90,768 KB
testcase_06 AC 586 ms
79,032 KB
testcase_07 AC 472 ms
80,908 KB
testcase_08 AC 730 ms
87,016 KB
testcase_09 AC 764 ms
84,764 KB
testcase_10 AC 692 ms
89,376 KB
testcase_11 AC 634 ms
80,220 KB
testcase_12 AC 760 ms
86,608 KB
testcase_13 AC 605 ms
77,812 KB
testcase_14 AC 370 ms
70,644 KB
testcase_15 AC 607 ms
77,672 KB
testcase_16 AC 117 ms
57,424 KB
testcase_17 AC 117 ms
56,880 KB
testcase_18 AC 116 ms
57,152 KB
testcase_19 AC 118 ms
56,928 KB
testcase_20 AC 116 ms
56,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


class Main {
    static SegmentTree seg;
    static void update(int x,long d){
        seg.update(x,new long[]{Math.max(d,0),d});
    }
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int[]t=sc.nextIntArray(n-1);
        long[]ct=new long[n],dt=new long[n-1];
        for(int i=0;i<n-1;++i)ct[i+1]=t[i]+3*(n-i-1);
        for(int i=0;i<n-1;++i)dt[i]=ct[i+1]-ct[i];
        int m=sc.nextInt();
        seg=new SegmentTree();
        for(int i=0;i<n-1;++i)update(i,dt[i]);
        for(int i=0;i<m;++i){
            int l=sc.nextInt();
            int r=sc.nextInt();
            long d=sc.nextInt();
            dt[l-1]+=d;
            update(l-1,dt[l-1]);
            if(r<n-1){
                dt[r]-=d;
                update(r,dt[r]);
            }
            long[]res=seg.query(0,n-1);
            out.println(res[0]);
        }
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
        int[] nextIntArray(int n){
            int[]r=new int[n];
            for(int i=0;i<n;++i)r[i]=nextInt();
            return r;
        }
    }
}
class SegmentTree {
    static final int SIZE = 1 << 18;
    long[][] seg;
    SegmentTree() {
	this.seg = new long[2 * SIZE][2];
    }
    static long[]comb(long[] a,long[] b){
        long dif=a[1]+b[1];
        long max=Math.max(a[0],a[1]+b[0]);
        return new long[]{max,dif};
    }
    void update(int x, long[] value) {
	x += SIZE - 1;
        for(int i=0;i<2;++i)
            seg[x][i]=value[i];
	while (x > 0) {
	    x = (x - 1) / 2;
	    this.seg[x] = comb(this.seg[2 * x + 1], this.seg[2 * x + 2]);
	}
    }
    long[] query(int a,int b,int l,int r,int k){
        if(a<=l&&r<=b)return seg[k];
        if(b<=l||r<=a)
            return new long[]{0,0};
        return comb(query(a,b,l,(l+r)/2,2*k+1),query(a,b,(l+r)/2,r,2*k+2));
    }
    long[] query(int l, int r) {
        return query(l,r,0,SIZE,0);
    }
}
0