結果
問題 | No.789 範囲の合計 |
ユーザー | kotatsugame |
提出日時 | 2019-02-08 23:03:30 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 270 ms / 1,000 ms |
コード長 | 950 bytes |
コンパイル時間 | 1,014 ms |
コンパイル使用メモリ | 92,784 KB |
実行使用メモリ | 14,128 KB |
最終ジャッジ日時 | 2024-07-01 11:42:35 |
合計ジャッジ時間 | 3,827 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
コンパイルメッセージ
main.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 26 | main() | ^~~~
ソースコード
#include<iostream> #include<map> #include<vector> #include<algorithm> using namespace std; //1-indexed #include<vector> template<typename T> struct BIT{ int n; vector<T>bit; BIT(int n_=0,T a=0):n(n_),bit(n_+1,a){} T sum(int i) { T ans=0; for(;i>0;i-=i&-i)ans+=bit[i]; return ans; } void add(int i,T a) { if(i==0)return; for(;i<=n;i+=i&-i)bit[i]+=a; } }; int n; main() { cin>>n; vector<pair<int,pair<int,int> > >a; vector<int>id; for(int i=0;i<n;i++) { int u,v,w;cin>>u>>v>>w; a.push_back(make_pair(u,make_pair(v,w))); id.push_back(v); if(u)id.push_back(w); } map<int,int>M; int sz=0; sort(id.begin(),id.end()); for(int i=0;i<id.size();i++) { if(!M[id[i]])M[id[i]]=++sz; } BIT<long>P(sz); long ans=0; for(int i=0;i<n;i++) { if(a[i].first) { ans+=P.sum(M[a[i].second.second])-P.sum(M[a[i].second.first]-1); } else { P.add(M[a[i].second.first],a[i].second.second); } } cout<<ans<<endl; }