結果

問題 No.1282 Display Elements
ユーザー hiro71687khiro71687k
提出日時 2023-03-24 03:22:18
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 950 bytes
コンパイル時間 4,679 ms
コンパイル使用メモリ 274,180 KB
実行使用メモリ 24,560 KB
最終ジャッジ日時 2024-09-18 15:50:25
合計ジャッジ時間 8,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 3 ms
5,376 KB
testcase_11 AC 3 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 258 ms
23,232 KB
testcase_16 AC 94 ms
11,796 KB
testcase_17 AC 220 ms
20,472 KB
testcase_18 AC 122 ms
13,364 KB
testcase_19 AC 98 ms
7,148 KB
testcase_20 AC 91 ms
7,144 KB
testcase_21 AC 284 ms
24,552 KB
testcase_22 AC 106 ms
7,020 KB
testcase_23 AC 292 ms
24,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll inf=144499999994;
ll mod=1000000007;
ll op(ll a,ll b){
    return a+b;
}
ll e(){
    return 0;
}
int main(){
    ll n;
    cin >> n;
    vector<ll>a(n),b(n);
    vector<ll>c;
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
        c.push_back(a[i]);
    }
    sort(a.begin(),a.end());
    for (ll i = 0; i < n; i++)
    {
        cin >> b[i];
        c.push_back(b[i]);
    }
    sort(c.begin(),c.end());
    c.erase(unique(c.begin(), c.end()), c.end());
    map<ll,ll>memo;
    for (ll i = 0; i < c.size(); i++)
    {
        memo[c[i]]=i;
    }
    vector<ll>x(c.size(),0);
    segtree<ll,op,e>seg(x);
    ll ans=0;
    for (ll i = 0; i < n; i++)
    {
        seg.set(memo[b[i]],seg.get(memo[b[i]])+1);
        ans+=seg.prod(0,memo[a[i]]);
    }
    cout << ans << endl;
}
0