結果

問題 No.1282 Display Elements
ユーザー ks2mks2m
提出日時 2020-11-06 22:30:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,103 ms / 2,000 ms
コード長 1,572 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 80,880 KB
実行使用メモリ 64,680 KB
最終ジャッジ日時 2024-07-22 13:14:50
合計ジャッジ時間 11,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,524 KB
testcase_01 AC 52 ms
36,536 KB
testcase_02 AC 54 ms
36,984 KB
testcase_03 AC 53 ms
37,120 KB
testcase_04 AC 55 ms
36,984 KB
testcase_05 AC 54 ms
37,120 KB
testcase_06 AC 55 ms
37,120 KB
testcase_07 AC 54 ms
37,072 KB
testcase_08 AC 56 ms
36,768 KB
testcase_09 AC 53 ms
36,340 KB
testcase_10 AC 73 ms
38,208 KB
testcase_11 AC 75 ms
37,904 KB
testcase_12 AC 55 ms
36,620 KB
testcase_13 AC 77 ms
37,628 KB
testcase_14 AC 103 ms
39,668 KB
testcase_15 AC 1,015 ms
62,652 KB
testcase_16 AC 542 ms
57,024 KB
testcase_17 AC 888 ms
58,756 KB
testcase_18 AC 654 ms
57,920 KB
testcase_19 AC 400 ms
56,632 KB
testcase_20 AC 396 ms
55,392 KB
testcase_21 AC 1,097 ms
64,664 KB
testcase_22 AC 511 ms
57,340 KB
testcase_23 AC 1,103 ms
64,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Arrays;
import java.util.TreeMap;

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());
		int n2 = n * 2;
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n2];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		sa = br.readLine().split(" ");
		for (int i = 0; i < n; i++) {
			a[n + i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int[] b = zaatu(a);
		int[] c = Arrays.copyOf(b, n);
		Arrays.sort(c);

		BIT bit = new BIT(n2);
		long ans = 0;
		for (int i = 0; i < n; i++) {
			bit.add(b[n + i], 1);
			ans += bit.sum(c[i] - 1);
		}
		System.out.println(ans);
	}

	static int[] zaatu(int[] a) {
		TreeMap<Integer, Integer> map = new TreeMap<>();
		for (int i = 0; i < a.length; i++) {
			map.put(a[i], null);
		}
		Integer[] arr = map.keySet().toArray(new Integer[0]);
		int cnt = 0;
		for (Integer i : arr) {
			cnt++;
			map.put(i, cnt);
		}
		int[] b = new int[a.length];
		for (int i = 0; i < a.length; i++) {
			b[i] = map.get(a[i]);
		}
		return b;
	}

	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