結果

問題 No.728 ギブ and テイク
ユーザー koprickykopricky
提出日時 2018-03-01 14:36:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 203 ms / 3,000 ms
コード長 1,309 bytes
コンパイル時間 2,170 ms
コンパイル使用メモリ 177,732 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-07 01:07:40
合計ジャッジ時間 6,208 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 11 ms
5,376 KB
testcase_14 AC 18 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 140 ms
10,112 KB
testcase_19 AC 150 ms
10,368 KB
testcase_20 AC 173 ms
11,624 KB
testcase_21 AC 156 ms
10,752 KB
testcase_22 AC 63 ms
6,400 KB
testcase_23 AC 40 ms
5,376 KB
testcase_24 AC 116 ms
8,704 KB
testcase_25 AC 113 ms
8,832 KB
testcase_26 AC 59 ms
6,272 KB
testcase_27 AC 203 ms
12,672 KB
testcase_28 AC 141 ms
12,800 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(int i=0;i<(int)n;++i)

using namespace std;

typedef pair<int,int>P;

template<class V> class BIT {
private:
	int n; vector<V> bit;
public:
	void add(int i,V x){ i++; while(i < n) bit[i] += x, i += i & -i;}
	V sum(int i){i++; V s = 0; while(i>0) s += bit[i], i -= i & -i; return s;}
	BIT(int sz){ n = sz + 1, bit.resize(n,0);} //初期値がすべて0の場合
	BIT(vector<V> v){n = (int)v.size()+1; bit.resize(n); rep(i,n) add(i,v[i]);}
	void print(){ rep(i,n-1)cout<<sum(i)-sum(i-1)<< " ";cout<<endl;}
	void print_sum(){ rep(i,n)cout<<sum(i-1)<<" ";cout<<endl;}	//-1スタート
};

int main()
{
    int n;
    scanf("%d",&n);
    vector<int> a(n);
    vector<P> vec(2*n);
    rep(i,n){
        scanf("%d",&a[i]);
        vec[i] = P(a[i],n+i);
    }
    vector<int> l(n),r(n);
    rep(i,n){
        scanf("%d%d",&l[i],&r[i]);
        vec[n+i] = P(a[i]-l[i],i);
    }
    sort(vec.begin(),vec.end());
    BIT<int> bt(n);
    ll ans = 0;
    rep(i,2*n){
        int q = vec[i].second;
        if(q >= n){
            q -= n;
            int id = upper_bound(a.begin(),a.end(),a[q]+r[q]) - a.begin();
            ans += bt.sum(id-1) - bt.sum(q);
        }else{
            bt.add(q,1);
        }
    }
    cout << ans << endl;
    return 0;
}
0