結果
問題 | No.789 範囲の合計 |
ユーザー | mint6421 |
提出日時 | 2019-09-06 16:33:27 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 281 ms / 1,000 ms |
コード長 | 2,151 bytes |
コンパイル時間 | 2,328 ms |
コンパイル使用メモリ | 216,036 KB |
実行使用メモリ | 20,048 KB |
最終ジャッジ日時 | 2024-06-24 00:18:11 |
合計ジャッジ時間 | 5,516 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 243 ms
19,116 KB |
testcase_03 | AC | 45 ms
6,940 KB |
testcase_04 | AC | 232 ms
18,436 KB |
testcase_05 | AC | 144 ms
19,088 KB |
testcase_06 | AC | 170 ms
18,832 KB |
testcase_07 | AC | 35 ms
6,944 KB |
testcase_08 | AC | 101 ms
11,792 KB |
testcase_09 | AC | 90 ms
10,380 KB |
testcase_10 | AC | 281 ms
20,048 KB |
testcase_11 | AC | 180 ms
18,504 KB |
testcase_12 | AC | 185 ms
18,532 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define inf INT_MAX #define INF LLONG_MAX #define ll long long #define ull unsigned long long #define M (int)(1e9+7) #define P pair<int,int> #define PLL pair<ll,ll> #define FOR(i,m,n) for(int i=(int)m;i<(int)n;i++) #define RFOR(i,m,n) for(int i=(int)m;i>=(int)n;i--) #define rep(i,n) FOR(i,0,n) #define rrep(i,n) RFOR(i,n,0) #define all(a) a.begin(),a.end() #define IN(a,n) rep(i,n){ cin>>a[i]; } const int vx[4] = {0,1,0,-1}; const int vy[4] = {1,0,-1,0}; #define PI 3.14159265 #define F first #define S second #define PB push_back #define EB emplace_back #define int ll #define vi vector<int> #define PP pair<int,P> template< typename Monoid > struct segTree { using F = function< Monoid(Monoid, Monoid) >; int sz; vector< Monoid > seg; const F f; const Monoid M1; segTree(int n, const F f, const Monoid &M1) : f(f), M1(M1) { sz = 1; while(sz < n) sz <<= 1; seg.assign(2 * sz, M1); } void set(int k, const Monoid &x) { seg[k + sz] = x; } void build() { for(int k = sz - 1; k > 0; k--) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } void update(int k, const Monoid &x) { k += sz; seg[k] += x; while(k >>= 1) { seg[k] = f(seg[2 * k + 0], seg[2 * k + 1]); } } Monoid get(int a, int b) { Monoid L = M1, R = M1; for(a += sz, b += sz; a < b; a >>= 1, b >>= 1) { if(a & 1) L = f(L, seg[a++]); if(b & 1) R = f(seg[--b], R); } return f(L, R); } Monoid operator[](const int &k) const { return seg[k + sz]; } }; int n; map<int,int> mp; vector<PP> v; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cin>>n; rep(i,n){ int a,b,c; cin>>a>>b>>c; v.PB(PP(a,P(b,c))); mp[b]=0; if(a==1) mp[c]=0; } int c=0; for(P p:mp){ mp[p.F]=c++; } int ans=0; segTree<int> seg(c,[](int a,int b){return a+b;},0); rep(i,n){ int x=mp[v[i].S.F]; //cout<<x<<' '<<y<<endl; if(v[i].F==0){ seg.update(x,v[i].S.S); }else{ int y=mp[v[i].S.S]; ans+=seg.get(x,y+1); //cout<<ans<<endl; } } cout<<ans<<endl; }