結果

問題 No.1234 典型RMQ
ユーザー 37zigen37zigen
提出日時 2020-09-21 04:16:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,662 ms / 2,000 ms
コード長 1,420 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 77,724 KB
実行使用メモリ 99,564 KB
最終ジャッジ日時 2024-11-09 02:21:18
合計ジャッジ時間 40,271 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
74,576 KB
testcase_01 AC 182 ms
75,924 KB
testcase_02 AC 181 ms
75,676 KB
testcase_03 AC 176 ms
75,736 KB
testcase_04 AC 176 ms
75,876 KB
testcase_05 AC 177 ms
75,796 KB
testcase_06 AC 1,622 ms
99,332 KB
testcase_07 AC 1,421 ms
99,320 KB
testcase_08 AC 1,661 ms
98,652 KB
testcase_09 AC 1,620 ms
99,436 KB
testcase_10 AC 1,636 ms
99,532 KB
testcase_11 AC 1,616 ms
99,164 KB
testcase_12 AC 1,559 ms
99,256 KB
testcase_13 AC 1,484 ms
98,472 KB
testcase_14 AC 1,580 ms
99,164 KB
testcase_15 AC 1,506 ms
99,432 KB
testcase_16 AC 1,662 ms
99,564 KB
testcase_17 AC 1,566 ms
99,256 KB
testcase_18 AC 1,400 ms
99,260 KB
testcase_19 AC 1,631 ms
98,792 KB
testcase_20 AC 1,407 ms
98,880 KB
testcase_21 AC 1,609 ms
99,404 KB
testcase_22 AC 1,598 ms
99,372 KB
testcase_23 AC 1,472 ms
99,460 KB
testcase_24 AC 1,590 ms
99,400 KB
testcase_25 AC 1,600 ms
99,392 KB
testcase_26 AC 1,591 ms
99,488 KB
testcase_27 AC 176 ms
75,824 KB
testcase_28 AC 181 ms
75,852 KB
testcase_29 AC 182 ms
75,836 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;
		
		void push(int k) {
			v[k]+=lazy[k];
			if (2*k+1<v.length) {
				lazy[2*k+1]+=lazy[k];
				lazy[2*k+2]+=lazy[k];
			}
			lazy[k]=0;
		}
		
		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) {
			push(k);
			if (b<=l||r<=a) return INF;
			if (a<=l&&r<=b) {
				lazy[k]+=add;
				push(k);
				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]=Math.min(v[2*k+1], v[2*k+2]);
			return 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