結果

問題 No.1234 典型RMQ
ユーザー 37zigen37zigen
提出日時 2020-09-21 04:38:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,604 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 2,466 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 101,308 KB
最終ジャッジ日時 2024-11-09 02:24:29
合計ジャッジ時間 38,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
75,840 KB
testcase_01 AC 168 ms
74,840 KB
testcase_02 AC 166 ms
74,716 KB
testcase_03 AC 176 ms
75,748 KB
testcase_04 AC 178 ms
76,104 KB
testcase_05 AC 163 ms
74,596 KB
testcase_06 AC 1,539 ms
99,212 KB
testcase_07 AC 1,318 ms
99,824 KB
testcase_08 AC 1,555 ms
98,956 KB
testcase_09 AC 1,493 ms
99,040 KB
testcase_10 AC 1,563 ms
99,528 KB
testcase_11 AC 1,552 ms
99,460 KB
testcase_12 AC 1,458 ms
98,644 KB
testcase_13 AC 1,400 ms
98,700 KB
testcase_14 AC 1,457 ms
99,140 KB
testcase_15 AC 1,464 ms
99,200 KB
testcase_16 AC 1,604 ms
99,548 KB
testcase_17 AC 1,467 ms
99,324 KB
testcase_18 AC 1,351 ms
98,324 KB
testcase_19 AC 1,538 ms
101,308 KB
testcase_20 AC 1,404 ms
98,924 KB
testcase_21 AC 1,542 ms
99,224 KB
testcase_22 AC 1,526 ms
99,304 KB
testcase_23 AC 1,527 ms
99,196 KB
testcase_24 AC 1,523 ms
99,452 KB
testcase_25 AC 1,538 ms
99,360 KB
testcase_26 AC 1,551 ms
99,612 KB
testcase_27 AC 160 ms
74,440 KB
testcase_28 AC 178 ms
75,844 KB
testcase_29 AC 180 ms
75,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.Arrays;
import java.util.Scanner;
import java.util.Stack;

class Main {
	public static void main(String[] $) {
		new Main().run();
	}
	
	class Seg {
		int n=1<<20;
		long[] v=new long[2*n-1];
		long[] lazy=new long[2*n-1];
		final long INF=Long.MAX_VALUE/3;
		
		long query(int a,int b,long add) {
			return query(0,n,a,b,0,add);
		}
		
		long query(int l,int r,int a,int b,int k,long add) {
			if (b<=l||r<=a) return INF;
			if (a<=l&&r<=b) {
				lazy[k]+=add;
				v[k]+=add;
				return v[k];
			}
			long vl=query(l,(l+r)/2,a,b,2*k+1,add);
			long vr=query((l+r)/2,r,a,b,2*k+2,add);
			v[k]=lazy[k]+Math.min(v[2*k+1], v[2*k+2]);
			return lazy[k]+Math.min(vl, vr);
		}
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		PrintWriter pw=new PrintWriter(System.out);
		int N=sc.nextInt();
		Seg seg=new Seg();
		for (int i=0;i<N;++i) {
			long a=sc.nextLong();
			seg.query(i, i+1, a);
		}
		int Q=sc.nextInt();
		for (int q=0;q<Q;++q) {
			int k=sc.nextInt();
			int l=sc.nextInt()-1;
			int r=sc.nextInt()-1;
			int c=sc.nextInt();
			if (k==1) {
				seg.query(l, r+1, c);
			} else {
				pw.println(seg.query(l, r+1, 0));
			}
		}
		pw.flush();
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
}
0