結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー 37zigen37zigen
提出日時 2020-07-17 23:04:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 3,305 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 74,028 KB
実行使用メモリ 55,988 KB
最終ジャッジ日時 2023-08-20 03:04:05
合計ジャッジ時間 7,221 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
51,556 KB
testcase_01 AC 41 ms
49,380 KB
testcase_02 AC 36 ms
49,208 KB
testcase_03 AC 158 ms
55,784 KB
testcase_04 AC 160 ms
55,680 KB
testcase_05 AC 142 ms
54,724 KB
testcase_06 AC 159 ms
55,468 KB
testcase_07 AC 162 ms
55,836 KB
testcase_08 AC 55 ms
50,704 KB
testcase_09 AC 127 ms
52,412 KB
testcase_10 AC 140 ms
55,196 KB
testcase_11 AC 37 ms
49,024 KB
testcase_12 AC 161 ms
55,132 KB
testcase_13 AC 163 ms
55,580 KB
testcase_14 AC 167 ms
55,532 KB
testcase_15 AC 38 ms
49,136 KB
testcase_16 AC 38 ms
48,888 KB
testcase_17 AC 37 ms
49,380 KB
testcase_18 AC 38 ms
49,144 KB
testcase_19 AC 38 ms
49,172 KB
testcase_20 AC 38 ms
49,124 KB
testcase_21 AC 39 ms
49,092 KB
testcase_22 AC 38 ms
49,176 KB
testcase_23 AC 77 ms
51,984 KB
testcase_24 AC 103 ms
52,328 KB
testcase_25 AC 149 ms
55,636 KB
testcase_26 AC 88 ms
52,308 KB
testcase_27 AC 114 ms
52,356 KB
testcase_28 AC 119 ms
52,312 KB
testcase_29 AC 152 ms
55,672 KB
testcase_30 AC 160 ms
54,700 KB
testcase_31 AC 92 ms
50,380 KB
testcase_32 AC 87 ms
51,816 KB
testcase_33 AC 147 ms
55,988 KB
testcase_34 AC 38 ms
49,084 KB
testcase_35 AC 40 ms
49,036 KB
testcase_36 AC 39 ms
49,204 KB
testcase_37 AC 39 ms
48,932 KB
testcase_38 AC 39 ms
49,368 KB
testcase_39 AC 38 ms
49,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;
import java.util.Arrays;
import java.util.NoSuchElementException;

public class Main {

	public static void main(String[] args) {
		new Main().run();
	}
	
	class SegTree {
		int n=1;
		int[] v;
		
		public SegTree(int n_) {
			while (n<n_) n*=2;
			v=new int[2*n-1];
		}
		
		void add(int k,int val) {
			k+=n-1;
			v[k]+=val;
			while (k>0) {
				k=(k-1)/2;
				v[k]=v[2*k+1]+v[2*k+2];
			}
		}
		
		int query(int a,int b) {
			return query(0,n,a,b,0);
		}
		
		int query(int l,int r,int a,int b,int k) {
			if (a<=l&&r<=b) return v[k];
			else if (r<=a||b<=l) return 0;
			else {
				int vl=query(l,(l+r)/2,a,b,2*k+1);
				int vr=query((l+r)/2,r,a,b,2*k+2);
				return vl+vr;
			}
		}
	}
	
	void run() {
		FastScanner sc=new FastScanner();
		int N=sc.nextInt();
		int[] A=new int[N];
		int[] B=new int[N];
		int[] C=new int[N];
		for (int i=0;i<N;++i) {
			A[i]=sc.nextInt()-1;
		}
		for (int i=0;i<N;++i) {
			B[i]=sc.nextInt()-1;
			C[B[i]]=i;
		}
		for (int i=0;i<N;++i) {
			A[i]=C[A[i]];
		}
		long ans=0;
		SegTree seg=new SegTree(N);
		for (int i=0;i<N;++i) {
			ans+=seg.query(A[i], N+1);
			seg.add(A[i], 1);
		}
		System.out.println(ans);
	}
	
	void tr(Object...objects) {System.out.println(Arrays.deepToString(objects));}
	
	
	class FastScanner {
	    private final InputStream in = System.in;
	    private final byte[] buffer = new byte[1024];
	    private int ptr = 0;
	    private int buflen = 0;
	    private boolean hasNextByte() {
	        if (ptr < buflen) {
	            return true;
	        }else{
	            ptr = 0;
	            try {
	                buflen = in.read(buffer);
	            } catch (IOException e) {
	                e.printStackTrace();
	            }
	            if (buflen <= 0) {
	                return false;
	            }
	        }
	        return true;
	    }
	    private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;}
	    private boolean isPrintableChar(int c) { return 33 <= c && c <= 126;}
	    private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;}
	    public boolean hasNext() { skipUnprintable(); return hasNextByte();}
	    public String next() {
	        if (!hasNext()) throw new NoSuchElementException();
	        StringBuilder sb = new StringBuilder();
	        int b = readByte();
	        while(isPrintableChar(b)) {
	            sb.appendCodePoint(b);
	            b = readByte();
	        }
	        return sb.toString();
	    }
	    public long nextLong() {
	        if (!hasNext()) throw new NoSuchElementException();
	        long n = 0;
	        boolean minus = false;
	        int b = readByte();
	        if (b == '-') {
	            minus = true;
	            b = readByte();
	        }
	        if (b < '0' || '9' < b) {
	            throw new NumberFormatException();
	        }
	        while(true){
	            if ('0' <= b && b <= '9') {
	                n *= 10;
	                n += b - '0';
	            }else if(b == -1 || !isPrintableChar(b)){
	                return minus ? -n : n;
	            }else{
	                throw new NumberFormatException();
	            }
	            b = readByte();
	        }
	    }
	    public int nextInt() {
	    	return (int)nextLong();
	    }
	}
}

0