CodeForces - 1324 D. Pair of Topics
原题地址:
http://codeforces.com/contest/1324/problem/D
基本题意:
给你一个数组,找符合(i < j)ai + aj > bi + bj 的序列对的数量。
基本思路:
本质上我们设 ci = ai - bi 那么原式可以换为 ci + cj > 0,所以我们可以有几个思路:
- pbds黑科技解法,我们转换为 cj > -ci 直接上红黑树每次插入 -ci 暴力往前找rank;
#include <bits/stdc++.h>
#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
#define IO std::ios::sync_with_stdio(false)
#define ll long long
#define INF 0x3f3f3f3f
typedef tree<pair<int,int>,null_type,less<>,rb_tree_tag,tree_order_statistics_node_update> rbtree;
const int maxn = 2e5 + 10;
int n,a[maxn],b[maxn];
int main() {
IO;
cin >> n;
for (int i = 0; i < n; i++) cin >> a[i];
for (int i = 0; i < n; i++) cin >> b[i];
ll ans = 0</