結果

問題 No.1282 Display Elements
ユーザー trineutrontrineutron
提出日時 2020-11-21 17:35:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 968 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 208,320 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 15:54:46
合計ジャッジ時間 4,912 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 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 3 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 3 ms
5,376 KB
testcase_15 AC 123 ms
5,664 KB
testcase_16 AC 50 ms
5,376 KB
testcase_17 AC 102 ms
6,940 KB
testcase_18 AC 64 ms
6,944 KB
testcase_19 AC 99 ms
6,944 KB
testcase_20 AC 94 ms
6,944 KB
testcase_21 AC 133 ms
6,944 KB
testcase_22 AC 108 ms
6,940 KB
testcase_23 AC 134 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;
    cin >> n;
    vector<int> a(n), b(n), c;
    for (int i = 0; i < n; i++) {
        cin >> a.at(i);
        c.push_back(a.at(i));
    }
    for (int i = 0; i < n; i++) {
        cin >> b.at(i);
        c.push_back(b.at(i));
    }
    sort(a.begin(), a.end());
    sort(c.begin(), c.end());
    c.erase(unique(c.begin(), c.end()), c.end());
    for (int i = 0; i < n; i++) {
        a.at(i) = lower_bound(c.begin(), c.end(), a.at(i)) - c.begin() + 1;
        b.at(i) = lower_bound(c.begin(), c.end(), b.at(i)) - c.begin() + 1;
    }
    vector<int> t(2 * n + 1);
    int64_t ans = 0;
    for (int i = 0; i < n; i++) {
        int idx = b.at(i);
        while (idx <= 2 * n) {
            t.at(idx)++;
            idx += idx & -idx;
        }
        idx = a.at(i) - 1;
        while (idx) {
            ans += t.at(idx);
            idx -= idx & -idx;
        }
    }
    cout << ans << endl;
}
0