結果

問題 No.610 区間賞(Section Award)
ユーザー nanaenanae
提出日時 2017-12-10 00:23:28
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 1,618 ms
コンパイル使用メモリ 157,492 KB
実行使用メモリ 12,108 KB
最終ジャッジ日時 2024-06-12 22:57:50
合計ジャッジ時間 5,548 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 14 ms
6,940 KB
testcase_20 AC 73 ms
10,984 KB
testcase_21 AC 10 ms
6,944 KB
testcase_22 AC 46 ms
8,412 KB
testcase_23 AC 6 ms
6,940 KB
testcase_24 AC 17 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 33 ms
6,940 KB
testcase_27 AC 71 ms
10,564 KB
testcase_28 AC 63 ms
9,448 KB
testcase_29 AC 45 ms
9,620 KB
testcase_30 AC 60 ms
9,288 KB
testcase_31 AC 31 ms
6,944 KB
testcase_32 AC 71 ms
12,024 KB
testcase_33 AC 10 ms
6,940 KB
testcase_34 AC 76 ms
10,112 KB
testcase_35 AC 34 ms
6,940 KB
testcase_36 AC 70 ms
11,908 KB
testcase_37 AC 55 ms
8,820 KB
testcase_38 AC 15 ms
6,944 KB
testcase_39 AC 73 ms
10,232 KB
testcase_40 AC 74 ms
10,940 KB
testcase_41 AC 80 ms
10,748 KB
testcase_42 AC 75 ms
10,776 KB
testcase_43 AC 73 ms
10,244 KB
testcase_44 AC 76 ms
11,744 KB
testcase_45 AC 93 ms
10,044 KB
testcase_46 AC 94 ms
10,156 KB
testcase_47 AC 60 ms
10,104 KB
testcase_48 AC 57 ms
9,628 KB
testcase_49 AC 62 ms
12,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.conv, std.algorithm, std.numeric;
import std.range, std.array, std.math, std.typecons, std.container, core.bitop;


void main() {
    int n;
    scan(n);

    auto a = readln.split.to!(int[]);
    auto b = readln.split.to!(int[]);

    auto ar = new int[](n + 1);
    foreach (i ; 0 .. n) {
        ar[a[i]] = i;
    }

    auto set = redBlackTree!(int)();
    auto aw = new bool[](n + 1);

    foreach (i ; 0 .. n) {
        set.insert(ar[b[i]]);

        if (set.upperBound(ar[b[i]]).empty) {
            aw[b[i]] = true;
        }
    }

    foreach (i ; 1 .. n + 1) {
        if (aw[i]) writeln(i);
    }
}



void scan(T...)(ref T args) {
    string[] line = readln.split;
    foreach (ref arg; args) {
        arg = line.front.to!(typeof(arg));
        line.popFront();
    }
    assert(line.empty);
}



void fillAll(R, T)(ref R arr, T value) {
    static if (is(typeof(arr[] = value))) {
        arr[] = value;
    }
    else {
        foreach (ref e; arr) {
            fillAll(e, value);
        }
    }
}
0