結果

問題 No.1282 Display Elements
ユーザー milanis48663220milanis48663220
提出日時 2020-11-06 21:43:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 1,369 bytes
コンパイル時間 1,129 ms
コンパイル使用メモリ 98,304 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-07-22 12:33:00
合計ジャッジ時間 2,942 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 217 ms
24,832 KB
testcase_16 AC 72 ms
12,160 KB
testcase_17 AC 168 ms
23,168 KB
testcase_18 AC 95 ms
14,464 KB
testcase_19 AC 25 ms
5,376 KB
testcase_20 AC 23 ms
5,376 KB
testcase_21 AC 241 ms
26,880 KB
testcase_22 AC 35 ms
5,376 KB
testcase_23 AC 239 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;

template <typename T>
struct bit{
    int n;
    vector<T> data;

    bit(int n_){
        n = 1;
        while(n < n_) n *= 2;
        data = vector<T>(n+1);
        for(int i = 0; i <= n; i++) data[i] = 0;
    }
    
    T sum(int i){
        T ret = 0;
        while(i > 0){
            ret += data[i];
            i -= i&-i;
        }
        return ret;
    }

    void add(int i, T x){
        while(i <= n){
            data[i] += x;
            i += i&-i;
        }
    }
};

ll n;
ll a[100000], b[100000];

map<ll, int> compress;

void make_compress(){
    set<ll> st;
    for(int i = 0; i < n; i++){
        st.insert(a[i]);
        st.insert(b[i]);
    }
    int cur = 1;
    for(ll x : st){
        compress[x] = cur;
        cur++;
    }
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> n;
    for(int i = 0; i < n; i++) cin >> a[i];
    for(int i = 0; i < n; i++) cin >> b[i];
    make_compress();
    sort(a, a+n);
    int m = compress.size();
    bit<ll> bt(m);
    ll ans = 0;
    for(int i = 0; i < n; i++){
        bt.add(compress[b[i]], 1);
        ans += bt.sum(compress[a[i]]-1);
    }
    cout << ans << endl;
}
0