結果

問題 No.610 区間賞(Section Award)
ユーザー 夕叢霧香(ゆうむらきりか)夕叢霧香(ゆうむらきりか)
提出日時 2017-12-10 00:08:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 2,034 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 61,776 KB
最終ジャッジ日時 2024-11-30 05:42:53
合計ジャッジ時間 13,091 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
50,160 KB
testcase_01 AC 57 ms
50,568 KB
testcase_02 AC 58 ms
50,364 KB
testcase_03 AC 58 ms
50,640 KB
testcase_04 AC 58 ms
50,248 KB
testcase_05 AC 59 ms
50,636 KB
testcase_06 AC 68 ms
51,420 KB
testcase_07 AC 61 ms
50,656 KB
testcase_08 AC 73 ms
51,492 KB
testcase_09 AC 60 ms
50,616 KB
testcase_10 AC 81 ms
51,368 KB
testcase_11 AC 80 ms
51,216 KB
testcase_12 AC 57 ms
50,124 KB
testcase_13 AC 73 ms
51,528 KB
testcase_14 AC 71 ms
51,308 KB
testcase_15 AC 77 ms
50,892 KB
testcase_16 AC 66 ms
50,632 KB
testcase_17 AC 63 ms
50,404 KB
testcase_18 AC 59 ms
50,412 KB
testcase_19 AC 132 ms
54,216 KB
testcase_20 AC 273 ms
58,808 KB
testcase_21 AC 138 ms
54,444 KB
testcase_22 AC 238 ms
56,284 KB
testcase_23 AC 124 ms
52,144 KB
testcase_24 AC 166 ms
54,860 KB
testcase_25 AC 115 ms
52,112 KB
testcase_26 AC 200 ms
55,212 KB
testcase_27 AC 267 ms
58,620 KB
testcase_28 AC 294 ms
58,868 KB
testcase_29 AC 229 ms
56,392 KB
testcase_30 AC 247 ms
56,456 KB
testcase_31 AC 188 ms
55,056 KB
testcase_32 AC 251 ms
58,588 KB
testcase_33 AC 124 ms
54,312 KB
testcase_34 AC 272 ms
58,608 KB
testcase_35 AC 236 ms
56,632 KB
testcase_36 AC 271 ms
58,536 KB
testcase_37 AC 246 ms
58,552 KB
testcase_38 AC 154 ms
54,444 KB
testcase_39 AC 295 ms
58,720 KB
testcase_40 AC 284 ms
58,684 KB
testcase_41 AC 279 ms
58,800 KB
testcase_42 AC 262 ms
58,508 KB
testcase_43 AC 284 ms
58,600 KB
testcase_44 AC 378 ms
59,044 KB
testcase_45 AC 433 ms
59,252 KB
testcase_46 AC 433 ms
61,776 KB
testcase_47 AC 258 ms
58,556 KB
testcase_48 AC 245 ms
56,536 KB
testcase_49 AC 253 ms
58,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


class Main {
    public static void main(String[] args) {
        MyScanner sc = new MyScanner();
        out = new PrintWriter(new BufferedOutputStream(System.out));
        int n=sc.nextInt();
        int[]a=new int[n],b=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;
        int[]c=new int[n],d=new int[n];
        for(int i=0;i<n;++i)c[b[i]]=i;
        for(int i=0;i<n;++i)d[i]=c[a[i]];
        int p=0;
        int[]e=new int[n];
        int m=n+1;
        for(int i=n-1;i>=0;--i){
            if(d[i]<m)
                e[p++]=a[i];
            m=Math.min(m,d[i]);
        }
        Arrays.sort(e,0,p);
        for(int i=0;i<p;++i)
            out.println(e[i]+1);
        out.close();
    }
    // http://codeforces.com/blog/entry/7018
    //-----------PrintWriter for faster output---------------------------------
    public static PrintWriter out;
    //-----------MyScanner class for faster input----------
    public static class MyScanner {
        BufferedReader br;
        StringTokenizer st;
        public MyScanner() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }
        String next() {
            while (st == null || !st.hasMoreElements()) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
            return st.nextToken();
        }
        int nextInt() {
            return Integer.parseInt(next());
        }
        long nextLong() {
            return Long.parseLong(next());
        }
        double nextDouble() {
            return Double.parseDouble(next());
        }
        String nextLine(){
            String str = "";
            try {
                str = br.readLine();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return str;
        }
    }
}
0