結果

問題 No.789 範囲の合計
ユーザー karinohitokarinohito
提出日時 2024-09-17 00:49:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 311 ms / 1,000 ms
コード長 806 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 214,544 KB
実行使用メモリ 21,228 KB
最終ジャッジ日時 2024-09-17 00:49:42
合計ジャッジ時間 5,641 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 273 ms
19,968 KB
testcase_03 AC 45 ms
5,632 KB
testcase_04 AC 256 ms
19,456 KB
testcase_05 AC 188 ms
20,160 KB
testcase_06 AC 181 ms
19,968 KB
testcase_07 AC 34 ms
5,632 KB
testcase_08 AC 118 ms
12,160 KB
testcase_09 AC 98 ms
10,880 KB
testcase_10 AC 311 ms
21,228 KB
testcase_11 AC 214 ms
19,456 KB
testcase_12 AC 205 ms
19,456 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/segtree>
using namespace atcoder;

ll op(ll a,ll b){return a+b;};
ll e(){return 0;};

int main() {

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N;
    cin>>N;
    map<ll,ll> M;
    vector<ll> T(N),X(N),Y(N);
    for(int i=0;i<N;i++){
        cin>>T[i]>>X[i]>>Y[i];
        if(T[i]==0)M[X[i]]=1;
        else M[X[i]]=M[Y[i]]=1;
    }
    int cnt=0;
    for(auto m:M)M[m.first]=cnt,cnt++;
    segtree<ll,op,e> seg(cnt+10);
    ll an=0;
    for(int i=0;i<N;i++){
        if(T[i]==0){
            ll p=seg.get(M[X[i]]);
            seg.set(M[X[i]],p+Y[i]);
        }
        else{
            an+=seg.prod(M[X[i]],M[Y[i]]+1);
        }
    }
    cout<<an<<endl;
    
}
0