結果

問題 No.610 区間賞(Section Award)
ユーザー KKT89KKT89
提出日時 2020-07-14 12:18:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 746 bytes
コンパイル時間 1,248 ms
コンパイル使用メモリ 123,304 KB
実行使用メモリ 9,340 KB
最終ジャッジ日時 2024-11-17 05:46:27
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 3 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 16 ms
5,248 KB
testcase_20 AC 107 ms
8,704 KB
testcase_21 AC 11 ms
5,248 KB
testcase_22 AC 60 ms
6,912 KB
testcase_23 AC 7 ms
5,248 KB
testcase_24 AC 20 ms
5,248 KB
testcase_25 AC 6 ms
5,248 KB
testcase_26 AC 39 ms
6,016 KB
testcase_27 AC 99 ms
8,832 KB
testcase_28 AC 83 ms
8,064 KB
testcase_29 AC 58 ms
6,784 KB
testcase_30 AC 83 ms
7,680 KB
testcase_31 AC 35 ms
5,632 KB
testcase_32 AC 100 ms
8,320 KB
testcase_33 AC 11 ms
5,248 KB
testcase_34 AC 106 ms
8,832 KB
testcase_35 AC 40 ms
6,016 KB
testcase_36 AC 99 ms
8,448 KB
testcase_37 AC 75 ms
7,680 KB
testcase_38 AC 17 ms
5,248 KB
testcase_39 AC 109 ms
8,832 KB
testcase_40 AC 106 ms
8,832 KB
testcase_41 AC 112 ms
8,832 KB
testcase_42 AC 108 ms
8,960 KB
testcase_43 AC 110 ms
8,832 KB
testcase_44 AC 95 ms
8,264 KB
testcase_45 AC 121 ms
9,256 KB
testcase_46 AC 119 ms
9,340 KB
testcase_47 AC 84 ms
7,936 KB
testcase_48 AC 77 ms
7,552 KB
testcase_49 AC 89 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
using namespace std;
typedef long long int ll;
using ull = unsigned long long;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n; cin >> n;
    vector<int> a(n),b(n);
    vector<int> v;
    map<int,int> mp;
    for(int i=0;i<n;i++){
        cin >> a[i];
        mp[a[i]]=i;
    }
    int mx=-1;
    for(int i=0;i<n;i++){
        cin >> b[i];
        if(mx<mp[b[i]])v.push_back(b[i]);
        mx=max(mx,mp[b[i]]);
    }
    sort(v.begin(), v.end());
    for(int vv:v){
        printf("%d\n",vv);
    }
}
0