結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー nebukuro09nebukuro09
提出日時 2020-07-17 21:37:43
言語 D
(dmd 2.109.1)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 1,808 bytes
コンパイル時間 1,110 ms
コンパイル使用メモリ 142,556 KB
実行使用メモリ 13,392 KB
最終ジャッジ日時 2024-06-22 07:39:55
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdlib, std.datetime;

void main() {
    auto N = readln.chomp.to!int;
    auto A = readln.split.map!(to!int).array;
    auto B = readln.split.map!(to!int).array;

    auto X = new int[](N+1);
    foreach (i, a; A) X[a] = i.to!int;

    auto C = N.iota.map!(i => tuple(i, B[i])).array;
    C.sort!((a,b)=>X[a[1]] < X[b[1]]);

    auto st = new SegmentTree!(long, (a, b)=>a+b, 0L)(N+1);
    long ans = 0;

    foreach (i; 0..N) {
        auto val = B[i];
        auto idx = X[val];
        ans += st.query(idx, N-1);
        st.add(idx, 1);
    }

    ans.writeln;
}


class SegmentTree(T, alias op, T e) {
    T[] table;
    int size;
    int offset;

    this(int n) {
        size = 1;
        while (size <= n) size <<= 1;
        size <<= 1;
        table = new T[](size);
        fill(table, e);
        offset = size / 2;
    }

    void assign(int pos, T val) {
        pos += offset;
        table[pos] = val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    void add(int pos, T val) {
        pos += offset;
        table[pos] += val;
        while (pos > 1) {
            pos /= 2;
            table[pos] = op(table[pos*2], table[pos*2+1]);
        }
    }

    T query(int l, int r) {
        return query(l, r, 1, 0, offset-1);
    }

    T query(int l, int r, int i, int a, int b) {
        if (b < l || r < a) {
            return e;
        } else if (l <= a && b <= r) {
            return table[i];
        } else {
            return op(query(l, r, i*2, a, (a+b)/2), query(l, r, i*2+1, (a+b)/2+1, b));
        }
    }
}


0