結果

問題 No.610 区間賞(Section Award)
ユーザー face4face4
提出日時 2018-12-24 22:37:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 664 ms
コンパイル使用メモリ 72,644 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-09-25 11:02:57
合計ジャッジ時間 5,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 17 ms
6,940 KB
testcase_20 AC 85 ms
8,832 KB
testcase_21 AC 12 ms
6,944 KB
testcase_22 AC 56 ms
7,040 KB
testcase_23 AC 8 ms
6,944 KB
testcase_24 AC 20 ms
6,940 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 38 ms
6,940 KB
testcase_27 AC 87 ms
8,704 KB
testcase_28 AC 77 ms
8,192 KB
testcase_29 AC 53 ms
6,944 KB
testcase_30 AC 70 ms
7,808 KB
testcase_31 AC 35 ms
6,944 KB
testcase_32 AC 81 ms
8,448 KB
testcase_33 AC 12 ms
6,944 KB
testcase_34 AC 89 ms
8,960 KB
testcase_35 AC 38 ms
6,940 KB
testcase_36 AC 84 ms
8,576 KB
testcase_37 AC 68 ms
7,680 KB
testcase_38 AC 18 ms
6,940 KB
testcase_39 AC 89 ms
8,960 KB
testcase_40 AC 91 ms
8,960 KB
testcase_41 AC 90 ms
8,960 KB
testcase_42 AC 91 ms
8,960 KB
testcase_43 AC 91 ms
8,960 KB
testcase_44 AC 216 ms
11,648 KB
testcase_45 AC 257 ms
13,184 KB
testcase_46 AC 260 ms
13,440 KB
testcase_47 AC 75 ms
7,936 KB
testcase_48 AC 68 ms
7,680 KB
testcase_49 AC 74 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;

int main(){
    int n;
    cin >> n;

    int a[n], b[n], x;
    for(int i = 0; i < n; i++)  cin >> x, a[--x] = i;
    for(int i = 0; i < n; i++)  cin >> b[i], b[i]--;

    set<int> s, res;
    s.insert(-1);    // sentinel
    for(int i = 0; i < n; i++){
        if(*(--(s.end())) < a[b[i]])    res.insert(b[i]);
        s.insert(a[b[i]]);
    }

    for(int x : res)    cout << x+1 << endl;

    return 0;
}
0