結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー tentententen
提出日時 2020-11-20 16:24:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 859 bytes
コンパイル時間 2,596 ms
コンパイル使用メモリ 78,424 KB
実行使用メモリ 71,800 KB
最終ジャッジ日時 2024-07-23 12:10:39
合計ジャッジ時間 27,632 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 318 ms
58,932 KB
testcase_01 AC 128 ms
54,056 KB
testcase_02 AC 136 ms
54,132 KB
testcase_03 AC 1,130 ms
69,288 KB
testcase_04 WA -
testcase_05 AC 1,091 ms
69,228 KB
testcase_06 AC 1,045 ms
69,240 KB
testcase_07 WA -
testcase_08 AC 273 ms
58,172 KB
testcase_09 AC 937 ms
69,212 KB
testcase_10 WA -
testcase_11 AC 131 ms
54,300 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 132 ms
54,136 KB
testcase_16 AC 130 ms
54,224 KB
testcase_17 AC 133 ms
53,840 KB
testcase_18 AC 142 ms
54,236 KB
testcase_19 AC 145 ms
54,268 KB
testcase_20 AC 138 ms
54,216 KB
testcase_21 AC 131 ms
54,264 KB
testcase_22 AC 136 ms
54,144 KB
testcase_23 AC 322 ms
58,960 KB
testcase_24 AC 663 ms
60,460 KB
testcase_25 AC 1,099 ms
69,232 KB
testcase_26 AC 461 ms
59,296 KB
testcase_27 AC 740 ms
62,472 KB
testcase_28 AC 928 ms
69,076 KB
testcase_29 AC 1,105 ms
69,388 KB
testcase_30 WA -
testcase_31 AC 550 ms
59,168 KB
testcase_32 AC 441 ms
59,176 KB
testcase_33 AC 846 ms
65,092 KB
testcase_34 AC 138 ms
54,428 KB
testcase_35 AC 131 ms
54,164 KB
testcase_36 AC 131 ms
54,244 KB
testcase_37 AC 133 ms
54,224 KB
testcase_38 AC 130 ms
54,316 KB
testcase_39 AC 137 ms
53,980 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[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		int[] order = new int[n + 1];
		for (int i = 0; i < n; i++) {
		    order[sc.nextInt()] = i;
		}
		ArrayList<Integer> list = new ArrayList<>();
		list.add(-1);
		list.add(Integer.MAX_VALUE);
		int count = 0;
		for (int i = 0; i < n; i++) {
		    int x = order[arr[i]];
		    int left = 0;
		    int right = list.size();
		    while (right - left > 1) {
		        int m = (left + right) / 2;
		        if (list.get(m) < x) {
		            left = m;
		        } else {
		            right = m;
		        }
		    }
		    count += list.size() - right - 1;
		    list.add(right, x);
		}
		System.out.println(count);
   }
}

0