結果

問題 No.610 区間賞(Section Award)
ユーザー 👑 jupirojupiro
提出日時 2020-04-12 17:21:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 2,582 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 122,412 KB
実行使用メモリ 6,212 KB
最終ジャッジ日時 2023-10-22 01:40:17
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 3 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 3 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 3 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 10 ms
4,348 KB
testcase_20 AC 44 ms
5,468 KB
testcase_21 AC 7 ms
4,348 KB
testcase_22 AC 29 ms
4,676 KB
testcase_23 AC 5 ms
4,348 KB
testcase_24 AC 12 ms
4,348 KB
testcase_25 AC 4 ms
4,348 KB
testcase_26 AC 20 ms
4,412 KB
testcase_27 AC 44 ms
5,468 KB
testcase_28 AC 38 ms
5,468 KB
testcase_29 AC 27 ms
4,676 KB
testcase_30 AC 35 ms
5,528 KB
testcase_31 AC 19 ms
4,412 KB
testcase_32 AC 40 ms
5,468 KB
testcase_33 AC 7 ms
4,348 KB
testcase_34 AC 45 ms
5,468 KB
testcase_35 AC 22 ms
4,412 KB
testcase_36 AC 41 ms
5,468 KB
testcase_37 AC 35 ms
5,204 KB
testcase_38 AC 10 ms
4,348 KB
testcase_39 AC 45 ms
5,468 KB
testcase_40 AC 45 ms
5,468 KB
testcase_41 AC 45 ms
5,468 KB
testcase_42 AC 45 ms
5,468 KB
testcase_43 AC 45 ms
5,468 KB
testcase_44 AC 49 ms
6,008 KB
testcase_45 AC 59 ms
6,188 KB
testcase_46 AC 60 ms
6,212 KB
testcase_47 AC 37 ms
5,468 KB
testcase_48 AC 34 ms
5,204 KB
testcase_49 AC 38 ms
5,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1 << 28;
//constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

template< typename Monoid >
struct SegmentTree {
    using F = function< Monoid(Monoid, Monoid) >;

    int sz;
    vector< Monoid > seg;

    const F f;
    const Monoid M1;

    SegmentTree(int n, const F f, const Monoid& M1) : f(f), M1(M1) {
        sz = 1;
        while (sz < n) sz <<= 1;
        seg.assign(2 * sz, M1);
    }

    void set(int k, const Monoid& x) {
        seg[k + sz] = x;
    }

    void build() {
        for (int k = sz - 1; k > 0; k--) {
            seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]);
        }
    }

    void update(int k, const Monoid& x) {
        k += sz;
        seg[k] = x;
        while (k >>= 1) {
            seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]);
        }
    }

    Monoid query(int a, int b) {
        Monoid L = M1, R = M1;
        if (a == b) return M1;
        for (a += sz, b += sz; a < b; a >>= 1, b >>= 1) {
            if (a & 1) L = f(L, seg[a++]);
            if (b & 1) R = f(seg[--b], R);
        }
        return f(L, R);
    }
};

int f(int a, int b) {
    return max(a, b);
}
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	int n; scanf("%d", &n);
	vector<int> p(n);
	vector<int> a(n); for (int i = 0; i < n; i++) scanf("%d", &a[i]), a[i]--;
	vector<int> b(n); for (int i = 0; i < n; i++) scanf("%d", &b[i]), b[i]--,p[b[i]] = i;
	vector<int> res;
    SegmentTree<int> seg(n, f, 0);
	for (int i = n - 1; i >= 0; i--) {
		int idx = p[a[i]];
        int mx = seg.query(0, idx);
        if (mx == 0) res.push_back(a[i] + 1);
        seg.update(idx, 1);
	}
    sort(res.begin(), res.end());
    for (int i = 0; i < res.size(); i++) {
        printf("%d\n", res[i]);
    }
	return 0;
}
0