結果

問題 No.789 範囲の合計
ユーザー chocoruskchocorusk
提出日時 2019-02-08 22:16:02
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 308 ms / 1,000 ms
コード長 1,010 bytes
コンパイル時間 894 ms
コンパイル使用メモリ 102,192 KB
実行使用メモリ 17,024 KB
最終ジャッジ日時 2024-07-01 11:33:58
合計ジャッジ時間 3,886 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 284 ms
15,744 KB
testcase_03 AC 77 ms
6,944 KB
testcase_04 AC 260 ms
15,104 KB
testcase_05 AC 187 ms
15,872 KB
testcase_06 AC 206 ms
15,616 KB
testcase_07 AC 68 ms
6,944 KB
testcase_08 AC 147 ms
9,984 KB
testcase_09 AC 141 ms
9,472 KB
testcase_10 AC 308 ms
17,024 KB
testcase_11 AC 228 ms
14,848 KB
testcase_12 AC 233 ms
14,720 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
using namespace std;
typedef long long int ll;
typedef pair<ll, int> P;
int m;
ll bit[300002];
 
ll sum(int i){
	ll s=0;
	while(i>0){
		s+=bit[i];
		i-=(i&(-i));
	}
	return s;
}
 
void add(int i, ll x){
	while(i<=m){
		bit[i]+=x;
		i+=(i&(-i));
	}
}
int main()
{
	int n;
	cin>>n;
	int t[100001]; ll x[100001], y[100001];
	map<ll, int> mp;
	for(int i=0; i<n; i++){
		cin>>t[i]>>x[i]>>y[i];
		mp[x[i]]=0;
		if(t[i]==1) mp[y[i]]=0;
	}
	m=1;
	for(auto& p:mp){
		p.second=m;
		m++;
	}
	for(int i=0; i<n; i++){
		x[i]=mp[x[i]];
		if(t[i]==1) y[i]=mp[y[i]];
	}
	ll ans=0;
	for(int i=0; i<n; i++){
		if(t[i]==0) add(x[i], y[i]);
		else ans+=(sum(y[i])-sum(x[i]-1));
	}
	cout<<ans<<endl;
	return 0;
}
0