結果

問題 No.230 Splarraay スプラレェーイ
ユーザー 37zigen37zigen
提出日時 2020-07-25 23:19:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 310 ms / 5,000 ms
コード長 3,763 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 77,044 KB
実行使用メモリ 60,256 KB
最終ジャッジ日時 2023-09-10 02:10:34
合計ジャッジ時間 6,722 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
50,288 KB
testcase_01 AC 69 ms
50,812 KB
testcase_02 AC 69 ms
52,468 KB
testcase_03 AC 75 ms
52,868 KB
testcase_04 AC 71 ms
50,940 KB
testcase_05 AC 116 ms
55,804 KB
testcase_06 AC 135 ms
57,912 KB
testcase_07 AC 87 ms
52,792 KB
testcase_08 AC 119 ms
55,700 KB
testcase_09 AC 232 ms
57,300 KB
testcase_10 AC 215 ms
57,380 KB
testcase_11 AC 196 ms
57,708 KB
testcase_12 AC 232 ms
57,520 KB
testcase_13 AC 148 ms
57,320 KB
testcase_14 AC 187 ms
58,176 KB
testcase_15 AC 276 ms
60,040 KB
testcase_16 AC 287 ms
59,676 KB
testcase_17 AC 310 ms
59,268 KB
testcase_18 AC 246 ms
60,256 KB
testcase_19 AC 248 ms
59,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	class SegTree {
		int n=1;
		int[] lazy;
		int[] a;
		int[] b;
		
		public SegTree(int n_) {
			while (n<n_) n*=2;
			a=new int[2*n-1];
			b=new int[2*n-1];
			lazy=new int[2*n-1];
		}
		
		void push(int l,int r,int k) {
			if (lazy[k]==0) return;
			a[k]=(r-l)*Math.max(lazy[k],0);
			b[k]=(r-l)*Math.min(lazy[k],0);
			if (2*k+1<2*n-1) {
				lazy[2*k+1]=lazy[k];
				lazy[2*k+2]=lazy[k];
			}
			lazy[k]=0;
		}
		
		int[] query(int a,int b,int upd) {
			return query(0,n,a,b,0,upd);
		}
		
		int[] query(int l,int r,int s,int t,int k,int upd) {
			push(l,r,k);
			if (r<=s||t<=l) return new int[] {0,0};
			else if (s<=l&&r<=t) {
				lazy[k]=upd;
				push(l,r,k);
				return new int[] {a[k],b[k]};
			} else {
				int[] vl=query(l,(l+r)/2,s,t,2*k+1,upd);
				int[] vr=query((l+r)/2,r,s,t,2*k+2,upd);
				a[k]=a[2*k+1]+a[2*k+2];
				b[k]=b[2*k+1]+b[2*k+2];
				return new int[] {vl[0]+vr[0],vl[1]+vr[1]};
			}
		}
	}

	void run() {
		FastScanner sc=new FastScanner();
		int N=sc.nextInt();
		int Q=sc.nextInt();
		SegTree seg=new SegTree(N);
		long a=0,b=0;
		for (int q=0;q<Q;++q) {
			int x=sc.nextInt();
			int l=sc.nextInt();
			int r=sc.nextInt();
			if (x==0) {
				int[] v=seg.query(l, r+1, 0);
				if (v[0]>-v[1]) a+=v[0];
				else if (v[0]<-v[1]) b+=v[1];
			} else if (x==1) {
				seg.query(l, r+1, +1);
			} else {
				seg.query(l, r+1, -1);
			}
		}
		a+=seg.query(0, N, 0)[0];
		b+=seg.query(0, N, 0)[1];
		System.out.println(a+" "+(-b));
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
	
	class FastScanner {
	    private final InputStream in = System.in;
	    private final byte[] buffer = new byte[1024];
	    private int ptr = 0;
	    private int buflen = 0;
	    private boolean hasNextByte() {
	        if (ptr < buflen) {
	            return true;
	        }else{
	            ptr = 0;
	            try {
	                buflen = in.read(buffer);
	            } catch (IOException e) {
	                e.printStackTrace();
	            }
	            if (buflen <= 0) {
	                return false;
	            }
	        }
	        return true;
	    }
	    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
	    private boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
	    private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
	    public boolean hasNext() { skipUnprintable(); return hasNextByte();}
	    public String next() {
	        if (!hasNext()) throw new NoSuchElementException();
	        StringBuilder sb = new StringBuilder();
	        int b = readByte();
	        while(isPrintableChar(b)) {
	            sb.appendCodePoint(b);
	            b = readByte();
	        }
	        return sb.toString();
	    }
	    public long nextLong() {
	        if (!hasNext()) throw new NoSuchElementException();
	        long n = 0;
	        boolean minus = false;
	        int b = readByte();
	        if (b == '-') {
	            minus = true;
	            b = readByte();
	        }
	        if (b < '0' || '9' < b) {
	            throw new NumberFormatException();
	        }
	        while(true){
	            if ('0' <= b && b <= '9') {
	                n *= 10;
	                n += b - '0';
	            }else if(b == -1 || !isPrintableChar(b)){
	                return minus ? -n : n;
	            }else{
	                throw new NumberFormatException();
	            }
	            b = readByte();
	        }
	    }
	    public int nextInt() {
	    	return (int)nextLong();
	    }
	}
}

0