結果
問題 | No.1115 二つの数列 / Two Sequences |
ユーザー | coco18000 |
提出日時 | 2020-07-17 21:45:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,719 bytes |
コンパイル時間 | 1,993 ms |
コンパイル使用メモリ | 173,200 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-07 07:53:11 |
合計ジャッジ時間 | 3,548 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 13 ms
6,944 KB |
testcase_10 | AC | 22 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 25 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 2 ms
6,944 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll, ll> pll; #define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i)) #define REP(i, n) FOR(i,n,0) #define OF64 std::setprecision(10) const ll MOD = 1000000007; const ll INF = (ll) 1e15; struct BinaryIndexTree { public: BinaryIndexTree(int n) : mN(n) { mPow = 1; while (mPow < n) mPow <<= 1; node.resize(n + 1); REP(i, n + 1) { node[i] = 0; } } ~BinaryIndexTree() { node.resize(0); } //! 1-index get ll sum(int index) { ll sum = 0; for (int i = index; i > 0; i -= i & (-i)) sum += node[i]; return sum; } //! 1-index add void add(int index, ll value) { for (int i = index; i <= mN; i += i & (-i)) node[i] += value; } int lowerBound(ll value) { if (value <= 0) return 0; int x = 0; for (int k = mPow; k > 0; k >>= 1) { if (x + k <= mN && node[x + k] < value) { value -= node[x + k]; x += k; } } return x + 1; } private: vector<ll> node; ll mN; ll mPow; }; pll A[100005]; int main() { cin.tie(0); ios::sync_with_stdio(false); ll N; cin >> N; REP(i, N) { cin >> A[i].first; } REP(i, N) { cin >> A[i].second; } sort(A, A + N, [](pll a, pll b) { return a.second < b.second; }); BinaryIndexTree bit(N + 5); ll ans = 0; REP(i, N) { ans += i - bit.sum(A[i].first); bit.add(A[i].first, 1); } cout << ans << endl; return 0; }