結果

問題 No.618 labo-index
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-11-29 18:52:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 846 ms / 6,000 ms
コード長 3,943 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 79,720 KB
実行使用メモリ 68,144 KB
最終ジャッジ日時 2024-05-05 18:54:30
合計ジャッジ時間 18,345 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
39,268 KB
testcase_01 AC 47 ms
39,180 KB
testcase_02 AC 49 ms
38,888 KB
testcase_03 AC 48 ms
39,348 KB
testcase_04 AC 107 ms
40,752 KB
testcase_05 AC 97 ms
40,892 KB
testcase_06 AC 50 ms
39,124 KB
testcase_07 AC 62 ms
39,448 KB
testcase_08 AC 73 ms
39,900 KB
testcase_09 AC 83 ms
40,608 KB
testcase_10 AC 104 ms
40,872 KB
testcase_11 AC 80 ms
40,372 KB
testcase_12 AC 85 ms
40,536 KB
testcase_13 AC 86 ms
40,624 KB
testcase_14 AC 77 ms
40,804 KB
testcase_15 AC 91 ms
40,952 KB
testcase_16 AC 101 ms
40,888 KB
testcase_17 AC 83 ms
40,408 KB
testcase_18 AC 128 ms
42,272 KB
testcase_19 AC 669 ms
58,308 KB
testcase_20 AC 692 ms
59,216 KB
testcase_21 AC 681 ms
58,440 KB
testcase_22 AC 663 ms
58,288 KB
testcase_23 AC 620 ms
58,496 KB
testcase_24 AC 723 ms
59,148 KB
testcase_25 AC 717 ms
60,732 KB
testcase_26 AC 645 ms
58,768 KB
testcase_27 AC 653 ms
59,816 KB
testcase_28 AC 627 ms
59,832 KB
testcase_29 AC 631 ms
58,752 KB
testcase_30 AC 697 ms
59,560 KB
testcase_31 AC 674 ms
59,148 KB
testcase_32 AC 727 ms
59,548 KB
testcase_33 AC 713 ms
59,648 KB
testcase_34 AC 846 ms
67,548 KB
testcase_35 AC 840 ms
68,144 KB
testcase_36 AC 419 ms
50,648 KB
testcase_37 AC 727 ms
62,456 KB
testcase_38 AC 54 ms
39,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


class Main {
    static int q;
    static int[]t;
    static long[]x;
    Main(){
        long b=0;
        long[]c=new long[q];
        int p=0;
        for(int i=0;i<q;++i)
            if(t[i]==1){
                c[p++]=x[i]-b;
                x[i]-=b;
            }
            else if(t[i]==3)
                b+=x[i];
            else
                x[i]=c[(int)x[i]-1];
        Arrays.sort(c,0,p);
        int p2=0;
        Map<Long,Integer>hm=new HashMap<Long,Integer>();
        for(int i=0;i<p;++i)
            if(i>0&&c[i]==c[i-1]);
            else hm.put(c[i],p2++);
        long[]cc=new long[p2];
        p2=0;
        for(int i=0;i<p;++i)
            if(i>0&&c[i]==c[i-1]);
            else cc[p2++]=c[i];
        PlusSegmentTree st=new PlusSegmentTree();
        b=0;
        for(int i=0;i<q;++i){
            if(t[i]==1){
                int j=hm.get(x[i]);
                st.update(j,st.query(j,j+1)+1);
            }else if(t[i]==2){
                int j=hm.get(x[i]);
                st.update(j,st.query(j,j+1)-1);
            }else
                b+=x[i];
            int ps=0,fl=p2+1;
            while(fl-ps>1){
                int y=(ps+fl)/2;
                if(st.query(y,p2)>=(y>0?cc[y-1]+1+b:-1L<<50))
                    ps=y;
                else
                    fl=y;
            }
            if(false){
                out.println("b="+b);
                out.print("st:");
                for(int j=0;j<p2;++j){
                    out.print(" "+st.query(j,j+1));
                }
                out.println();
                out.println("ps="+ps);
            }
            out.println(Math.min(st.query(ps,p2),ps==p2?Long.MAX_VALUE:cc[ps]+b));
        }
    }
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        q=sc.nextInt();
        t=new int[q];
        x=new long[q];
        for(int i=0;i<q;++i){
            t[i]=sc.nextInt();
            x[i]=sc.nextLong();
        }
        new Main();
        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;
        }
    }
}
class PlusSegmentTree {
    static final int SIZE = 1 << 17;
    long[] seg;
    PlusSegmentTree() {
	this.seg = new long[2 * SIZE];
    }
    void update(int x, long value) {
	x += SIZE - 1;
	this.seg[x] = value;
	while (x > 0) {
	    x = (x - 1) / 2;
	    this.seg[x] = this.seg[2 * x + 1] + this.seg[2 * x + 2];
	}
    }
    long query(int l, int r) {
	l += SIZE - 1;
	r += SIZE - 1;
        long y = 0;
	while (l < r) {
	    if ((l & 1) == 0) {
		y += this.seg[l];
	    }
	    if ((r & 1) == 0) {
		y += this.seg[r - 1];
	    }
	    l /= 2;
	    r = (r - 1) / 2;
	}
	return y;
    }
}
0