結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
58,768 KB
testcase_01 AC 134 ms
54,484 KB
testcase_02 AC 143 ms
54,216 KB
testcase_03 AC 1,189 ms
69,432 KB
testcase_04 AC 1,252 ms
69,396 KB
testcase_05 AC 1,157 ms
69,360 KB
testcase_06 AC 1,066 ms
69,604 KB
testcase_07 AC 1,316 ms
69,412 KB
testcase_08 AC 280 ms
58,800 KB
testcase_09 AC 937 ms
69,268 KB
testcase_10 AC 1,350 ms
71,292 KB
testcase_11 AC 136 ms
54,300 KB
testcase_12 AC 1,227 ms
69,460 KB
testcase_13 AC 1,295 ms
69,608 KB
testcase_14 AC 1,261 ms
71,532 KB
testcase_15 AC 133 ms
54,184 KB
testcase_16 AC 133 ms
54,188 KB
testcase_17 AC 123 ms
53,192 KB
testcase_18 AC 143 ms
54,384 KB
testcase_19 AC 150 ms
54,156 KB
testcase_20 AC 138 ms
54,128 KB
testcase_21 AC 135 ms
54,528 KB
testcase_22 AC 139 ms
54,140 KB
testcase_23 AC 318 ms
58,984 KB
testcase_24 AC 665 ms
60,612 KB
testcase_25 AC 1,127 ms
69,336 KB
testcase_26 AC 474 ms
59,456 KB
testcase_27 AC 723 ms
62,812 KB
testcase_28 AC 939 ms
69,340 KB
testcase_29 AC 1,128 ms
69,404 KB
testcase_30 AC 1,178 ms
69,668 KB
testcase_31 AC 538 ms
59,460 KB
testcase_32 AC 446 ms
59,528 KB
testcase_33 AC 820 ms
65,640 KB
testcase_34 AC 139 ms
54,188 KB
testcase_35 AC 135 ms
54,256 KB
testcase_36 AC 135 ms
54,256 KB
testcase_37 AC 136 ms
54,256 KB
testcase_38 AC 136 ms
54,128 KB
testcase_39 AC 141 ms
54,360 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);
		long 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