結果
問題 | No.789 範囲の合計 |
ユーザー | kotatsugame |
提出日時 | 2019-02-08 23:03:30 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 243 ms
12,972 KB |
testcase_03 | AC | 77 ms
6,940 KB |
testcase_04 | AC | 227 ms
12,596 KB |
testcase_05 | AC | 195 ms
13,304 KB |
testcase_06 | AC | 204 ms
12,968 KB |
testcase_07 | AC | 69 ms
6,940 KB |
testcase_08 | AC | 148 ms
8,596 KB |
testcase_09 | AC | 140 ms
8,364 KB |
testcase_10 | AC | 270 ms
14,128 KB |
testcase_11 | AC | 207 ms
12,632 KB |
testcase_12 | AC | 212 ms
12,760 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
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; }