結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー sca1lsca1l
提出日時 2020-07-19 14:15:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 698 ms / 2,000 ms
コード長 2,073 bytes
コンパイル時間 2,827 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 63,640 KB
最終ジャッジ日時 2024-12-16 05:50:18
合計ジャッジ時間 20,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 251 ms
59,384 KB
testcase_01 AC 129 ms
54,080 KB
testcase_02 AC 131 ms
54,096 KB
testcase_03 AC 650 ms
62,300 KB
testcase_04 AC 684 ms
63,424 KB
testcase_05 AC 645 ms
62,708 KB
testcase_06 AC 637 ms
62,384 KB
testcase_07 AC 676 ms
63,376 KB
testcase_08 AC 204 ms
57,796 KB
testcase_09 AC 464 ms
59,000 KB
testcase_10 AC 525 ms
62,388 KB
testcase_11 AC 130 ms
54,008 KB
testcase_12 AC 698 ms
62,848 KB
testcase_13 AC 663 ms
63,640 KB
testcase_14 AC 673 ms
63,408 KB
testcase_15 AC 120 ms
54,208 KB
testcase_16 AC 119 ms
54,276 KB
testcase_17 AC 120 ms
54,156 KB
testcase_18 AC 128 ms
54,256 KB
testcase_19 AC 129 ms
54,420 KB
testcase_20 AC 127 ms
54,260 KB
testcase_21 AC 114 ms
53,600 KB
testcase_22 AC 132 ms
54,040 KB
testcase_23 AC 247 ms
59,268 KB
testcase_24 AC 462 ms
60,064 KB
testcase_25 AC 511 ms
61,424 KB
testcase_26 AC 306 ms
59,044 KB
testcase_27 AC 504 ms
59,480 KB
testcase_28 AC 511 ms
59,736 KB
testcase_29 AC 518 ms
62,860 KB
testcase_30 AC 684 ms
62,932 KB
testcase_31 AC 380 ms
59,844 KB
testcase_32 AC 312 ms
58,988 KB
testcase_33 AC 612 ms
61,872 KB
testcase_34 AC 126 ms
53,752 KB
testcase_35 AC 131 ms
54,800 KB
testcase_36 AC 120 ms
53,864 KB
testcase_37 AC 119 ms
53,796 KB
testcase_38 AC 101 ms
52,604 KB
testcase_39 AC 127 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    
    static final int MOD = (int)1e9+7;
    
    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();
        c = inv.shrink(c);
        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]] = 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;
        }
    }
}

0