結果
問題 | No.1115 二つの数列 / Two Sequences |
ユーザー | sca1l |
提出日時 | 2020-07-19 14:06:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 689 ms / 2,000 ms |
コード長 | 2,095 bytes |
コンパイル時間 | 4,191 ms |
コンパイル使用メモリ | 85,752 KB |
実行使用メモリ | 52,492 KB |
最終ジャッジ日時 | 2024-12-16 05:48:07 |
合計ジャッジ時間 | 19,472 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 249 ms
46,144 KB |
testcase_01 | AC | 129 ms
41,772 KB |
testcase_02 | AC | 133 ms
41,228 KB |
testcase_03 | AC | 662 ms
49,580 KB |
testcase_04 | AC | 680 ms
52,148 KB |
testcase_05 | AC | 614 ms
51,492 KB |
testcase_06 | AC | 627 ms
50,400 KB |
testcase_07 | AC | 681 ms
52,388 KB |
testcase_08 | AC | 218 ms
45,524 KB |
testcase_09 | AC | 476 ms
48,212 KB |
testcase_10 | AC | 562 ms
52,448 KB |
testcase_11 | AC | 127 ms
41,188 KB |
testcase_12 | AC | 689 ms
52,128 KB |
testcase_13 | AC | 641 ms
52,228 KB |
testcase_14 | AC | 593 ms
52,492 KB |
testcase_15 | AC | 128 ms
41,300 KB |
testcase_16 | AC | 128 ms
41,260 KB |
testcase_17 | AC | 118 ms
41,280 KB |
testcase_18 | AC | 135 ms
41,580 KB |
testcase_19 | AC | 139 ms
41,380 KB |
testcase_20 | AC | 136 ms
41,432 KB |
testcase_21 | AC | 135 ms
41,320 KB |
testcase_22 | AC | 135 ms
41,316 KB |
testcase_23 | AC | 242 ms
46,172 KB |
testcase_24 | AC | 473 ms
48,788 KB |
testcase_25 | AC | 617 ms
49,236 KB |
testcase_26 | AC | 321 ms
47,904 KB |
testcase_27 | AC | 468 ms
48,552 KB |
testcase_28 | AC | 520 ms
49,240 KB |
testcase_29 | AC | 514 ms
50,600 KB |
testcase_30 | AC | 669 ms
52,052 KB |
testcase_31 | AC | 383 ms
47,944 KB |
testcase_32 | AC | 298 ms
47,376 KB |
testcase_33 | AC | 640 ms
50,500 KB |
testcase_34 | AC | 132 ms
41,144 KB |
testcase_35 | AC | 126 ms
41,400 KB |
testcase_36 | AC | 130 ms
41,224 KB |
testcase_37 | AC | 131 ms
41,556 KB |
testcase_38 | AC | 113 ms
41,368 KB |
testcase_39 | AC | 133 ms
41,516 KB |
ソースコード
import java.util.*; public class Main{ static final int MOD = (int)1e9+7; static HashMap<Integer, Integer> memo; public static void main(String[] args){ Scanner sc = new Scanner(System.in); int n = Integer.parseInt(sc.next()); int[] a = new int[n]; for(int i=0; i<n; i++){ a[i] = Integer.parseInt(sc.next()); } int[] b = new int[n+1]; for(int i=0; i<n; i++){ int idx = Integer.parseInt(sc.next()); b[idx] = i; } int[] c = new int[n]; for(int i=0; i<n; i++){ c[i] = b[a[i]]+1; } Inversion inv = new Inversion(); long ans = inv.inv(c); System.out.println(ans); } } class Inversion{ public long inv(int[] a){ long cnt = 0; int size = a.length; BinaryIndexedTree bit = new BinaryIndexedTree(size); for(int i=0; i<size; i++){ int p = a[i]; bit.add(p, 1); cnt += i + 1 - bit.sum(p); } return cnt; } //座圧(1-indexed) //使うとよい public static int[] shrink(int[] a){ int n = a.length; long[] b = new long[n]; for (int i = 0; i < n; i++){ b[i] = ((long)a[i] << 32) + i; } Arrays.sort(b); int[] ret = new int[n]; int p = 1;//1-indexed for (int i = 0; i < n; i++){ if (i > 0 && (b[i]>>32) != (b[i - 1]>>32)){ p++; } ret[(int)(b[i]>>32)] = p; } return ret; } } class BinaryIndexedTree{ int size; long[] tree; public BinaryIndexedTree(int n){ this.size = n; this.tree = new long[n+1]; } public long sum(int i){ long s = 0L; while(0<i){ s += tree[i]; i -= i & -i; } return s; } public void add(int i, int x){ while(i<=size){ tree[i] += x; i += i & -i; } } }