結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ks2mks2m
提出日時 2020-07-17 21:39:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 2,436 ms
コンパイル使用メモリ 77,316 KB
実行使用メモリ 54,664 KB
最終ジャッジ日時 2024-05-07 07:36:20
合計ジャッジ時間 9,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,324 KB
testcase_01 AC 45 ms
36,852 KB
testcase_02 AC 46 ms
36,984 KB
testcase_03 AC 289 ms
54,444 KB
testcase_04 AC 276 ms
53,808 KB
testcase_05 AC 283 ms
54,032 KB
testcase_06 AC 242 ms
49,444 KB
testcase_07 AC 302 ms
54,548 KB
testcase_08 AC 93 ms
39,240 KB
testcase_09 AC 210 ms
49,060 KB
testcase_10 AC 275 ms
54,020 KB
testcase_11 AC 45 ms
37,008 KB
testcase_12 AC 298 ms
54,504 KB
testcase_13 AC 291 ms
54,352 KB
testcase_14 AC 301 ms
54,664 KB
testcase_15 AC 47 ms
36,912 KB
testcase_16 AC 45 ms
37,036 KB
testcase_17 AC 45 ms
36,720 KB
testcase_18 AC 47 ms
36,948 KB
testcase_19 AC 46 ms
36,936 KB
testcase_20 AC 46 ms
37,080 KB
testcase_21 AC 44 ms
36,752 KB
testcase_22 AC 45 ms
36,376 KB
testcase_23 AC 107 ms
40,096 KB
testcase_24 AC 162 ms
44,572 KB
testcase_25 AC 227 ms
50,196 KB
testcase_26 AC 123 ms
42,360 KB
testcase_27 AC 189 ms
49,584 KB
testcase_28 AC 217 ms
49,216 KB
testcase_29 AC 244 ms
48,460 KB
testcase_30 AC 286 ms
53,876 KB
testcase_31 AC 148 ms
44,744 KB
testcase_32 AC 120 ms
41,700 KB
testcase_33 AC 263 ms
53,884 KB
testcase_34 AC 45 ms
36,648 KB
testcase_35 AC 46 ms
36,936 KB
testcase_36 AC 47 ms
36,856 KB
testcase_37 AC 46 ms
36,944 KB
testcase_38 AC 45 ms
37,036 KB
testcase_39 AC 44 ms
36,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]) - 1;
		}
		sa = br.readLine().split(" ");
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[Integer.parseInt(sa[i]) - 1] = i + 1;
		}
		br.close();

		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			c[i] = b[a[i]];
		}
		System.out.println(tentousuu(c));
	}

	static long tentousuu(int[] a) {
		int n = a.length;
		int min = Integer.MAX_VALUE;
		int max = Integer.MIN_VALUE;
		for (int i = 0; i < n; i++) {
			min = Math.min(min, a[i]);
			max = Math.max(max, a[i]);
		}
		min--;
		int[] b = new int[n];
		for (int i = 0; i < n; i++) {
			b[i] = a[i] - min;
		}

		BIT bit = new BIT(max - min);
		long ret = 0;
		for (int i = 0; i < n; i++) {
			ret += i - bit.sum(b[i]);
			bit.add(b[i], 1);
		}
		return ret;
	}

	/**
	 * Binary Indexed Tree
	 * 要素数nで初期化
	 * add、sumは1-indexed
	 */
	static class BIT {
		int n;
		long[] arr;

		public BIT(int n) {
			this.n = n;
			arr = new long[n + 1];
		}

		void add(int idx, long val) {
			for (int i = idx; i <= n; i += i & -i) {
				arr[i] += val;
			}
		}

		long sum(int idx) {
			long sum = 0;
			for (int i = idx; i > 0; i -= i & -i) {
				sum += arr[i];
			}
			return sum;
		}
	}
}
0