結果

問題 No.1282 Display Elements
ユーザー tentententen
提出日時 2020-11-09 12:43:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,236 ms / 2,000 ms
コード長 1,333 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 79,636 KB
実行使用メモリ 59,920 KB
最終ジャッジ日時 2024-07-22 16:01:00
合計ジャッジ時間 14,640 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
41,464 KB
testcase_01 AC 115 ms
41,752 KB
testcase_02 AC 113 ms
41,480 KB
testcase_03 AC 102 ms
41,420 KB
testcase_04 AC 111 ms
40,152 KB
testcase_05 AC 114 ms
41,652 KB
testcase_06 AC 113 ms
41,212 KB
testcase_07 AC 114 ms
41,532 KB
testcase_08 AC 114 ms
41,228 KB
testcase_09 AC 103 ms
40,200 KB
testcase_10 AC 186 ms
43,568 KB
testcase_11 AC 176 ms
43,628 KB
testcase_12 AC 133 ms
41,960 KB
testcase_13 AC 176 ms
43,024 KB
testcase_14 AC 179 ms
43,624 KB
testcase_15 AC 1,083 ms
59,164 KB
testcase_16 AC 629 ms
50,408 KB
testcase_17 AC 1,060 ms
59,424 KB
testcase_18 AC 731 ms
52,680 KB
testcase_19 AC 1,214 ms
58,832 KB
testcase_20 AC 1,227 ms
59,920 KB
testcase_21 AC 1,236 ms
59,048 KB
testcase_22 AC 1,167 ms
58,664 KB
testcase_23 AC 1,194 ms
58,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] aArr = new int[n];
        for (int i = 0; i < n; i++) {
            aArr[i] = sc.nextInt();
        }
        Arrays.sort(aArr);
        int[] bArr = new int[n];
        for (int i = 0; i < n; i++) {
            bArr[i] = sc.nextInt();
        }
        ArrayList<Integer> used = new ArrayList<>();
        used.add(Integer.MIN_VALUE);
        used.add(Integer.MAX_VALUE);
        long point = 0;
        for (int i = 0; i < n; i++) {
            int left = 0;
            int right = used.size();
            while (right - left > 1) {
                int m = (left + right) / 2;
                if (used.get(m) < bArr[i]) {
                    left = m;
                } else {
                    right = m;
                }
            }
            used.add(right, bArr[i]);
            int min = 0;
            int max = used.size();
            while (max - min > 1) {
                int m = (min + max) / 2;
                if (used.get(m) < aArr[i]) {
                    min = m;
                } else {
                    max = m;
                }
            }
            point += min;
        }
        System.out.println(point);
    }
}
0