結果

問題 No.618 labo-index
ユーザー htensaihtensai
提出日時 2020-02-13 11:47:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,932 ms / 6,000 ms
コード長 1,601 bytes
コンパイル時間 2,097 ms
コンパイル使用メモリ 79,112 KB
実行使用メモリ 65,844 KB
最終ジャッジ日時 2024-10-05 11:26:02
合計ジャッジ時間 24,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,220 KB
testcase_01 AC 113 ms
41,104 KB
testcase_02 AC 102 ms
40,080 KB
testcase_03 AC 105 ms
39,880 KB
testcase_04 AC 185 ms
43,600 KB
testcase_05 AC 188 ms
43,552 KB
testcase_06 AC 126 ms
41,324 KB
testcase_07 AC 163 ms
42,112 KB
testcase_08 AC 158 ms
42,132 KB
testcase_09 AC 170 ms
43,236 KB
testcase_10 AC 178 ms
43,616 KB
testcase_11 AC 170 ms
42,400 KB
testcase_12 AC 164 ms
42,012 KB
testcase_13 AC 178 ms
43,196 KB
testcase_14 AC 167 ms
42,504 KB
testcase_15 AC 176 ms
43,520 KB
testcase_16 AC 188 ms
43,972 KB
testcase_17 AC 169 ms
42,624 KB
testcase_18 AC 194 ms
45,260 KB
testcase_19 AC 730 ms
56,612 KB
testcase_20 AC 743 ms
58,460 KB
testcase_21 AC 661 ms
58,252 KB
testcase_22 AC 732 ms
58,420 KB
testcase_23 AC 782 ms
58,908 KB
testcase_24 AC 695 ms
58,460 KB
testcase_25 AC 750 ms
58,536 KB
testcase_26 AC 713 ms
58,564 KB
testcase_27 AC 673 ms
58,920 KB
testcase_28 AC 686 ms
57,348 KB
testcase_29 AC 711 ms
59,200 KB
testcase_30 AC 722 ms
56,984 KB
testcase_31 AC 671 ms
58,728 KB
testcase_32 AC 742 ms
59,332 KB
testcase_33 AC 705 ms
59,004 KB
testcase_34 AC 1,200 ms
64,376 KB
testcase_35 AC 1,269 ms
65,844 KB
testcase_36 AC 795 ms
62,136 KB
testcase_37 AC 1,932 ms
63,200 KB
testcase_38 AC 112 ms
41,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int q = sc.nextInt();
        ArrayList<Long> order = new ArrayList<>();
        ArrayList<Long> current = new ArrayList<>();
        current.add(Long.MIN_VALUE);
        current.add(Long.MAX_VALUE);
        long added = 0;
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < q; i++) {
            int t = sc.nextInt();
            int x = sc.nextInt();
            if (t == 1) {
                int left = 0;
                int right = current.size() - 1;
                long y = x - added;
                while (right - left > 1) {
                    int m = (left + right) / 2;
                    if (current.get(m) <= y) {
                        left = m;
                    } else {
                        right = m;
                    }
                }
                current.add(right, y);
                order.add(y);
            } else if (t == 2) {
                current.remove(order.get(x - 1));
            } else {
                added += x;
            }
            int left = 0;
            int right = current.size() - 1;
            while(right - left > 1) {
                int m = (left + right) / 2;
                if (current.get(m) + added >= current.size() - m - 1) {
                    right = m;
                } else {
                    left = m;
                }
            }
            sb.append(current.size() - right - 1).append("\n");
        }
        System.out.print(sb);
    }
}
0