結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー 37zigen37zigen
提出日時 2020-07-17 23:03:27
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 3,304 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 77,768 KB
実行使用メモリ 55,636 KB
最終ジャッジ日時 2024-05-07 10:36:38
合計ジャッジ時間 8,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
50,880 KB
testcase_01 AC 53 ms
50,064 KB
testcase_02 AC 52 ms
50,112 KB
testcase_03 AC 182 ms
55,048 KB
testcase_04 WA -
testcase_05 AC 182 ms
54,848 KB
testcase_06 AC 192 ms
55,300 KB
testcase_07 WA -
testcase_08 AC 71 ms
50,796 KB
testcase_09 AC 146 ms
51,952 KB
testcase_10 WA -
testcase_11 AC 51 ms
49,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 53 ms
49,776 KB
testcase_16 AC 51 ms
50,004 KB
testcase_17 AC 53 ms
50,008 KB
testcase_18 AC 53 ms
49,888 KB
testcase_19 AC 53 ms
50,076 KB
testcase_20 AC 51 ms
50,196 KB
testcase_21 AC 52 ms
49,760 KB
testcase_22 AC 54 ms
49,972 KB
testcase_23 AC 90 ms
51,584 KB
testcase_24 AC 124 ms
52,152 KB
testcase_25 AC 183 ms
55,624 KB
testcase_26 AC 110 ms
51,664 KB
testcase_27 AC 138 ms
51,840 KB
testcase_28 AC 150 ms
52,100 KB
testcase_29 AC 192 ms
55,492 KB
testcase_30 WA -
testcase_31 AC 113 ms
51,860 KB
testcase_32 AC 105 ms
51,836 KB
testcase_33 AC 184 ms
55,468 KB
testcase_34 AC 53 ms
49,660 KB
testcase_35 AC 53 ms
50,072 KB
testcase_36 AC 53 ms
49,816 KB
testcase_37 AC 53 ms
49,772 KB
testcase_38 AC 53 ms
49,668 KB
testcase_39 AC 52 ms
49,668 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]];
		}
		int 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