結果
問題 | No.789 範囲の合計 |
ユーザー | karinohito |
提出日時 | 2024-09-17 00:49:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 801 bytes |
コンパイル時間 | 2,508 ms |
コンパイル使用メモリ | 213,076 KB |
実行使用メモリ | 18,816 KB |
最終ジャッジ日時 | 2024-09-17 00:49:18 |
合計ジャッジ時間 | 6,890 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | AC | 48 ms
8,448 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 39 ms
8,320 KB |
testcase_08 | AC | 116 ms
12,544 KB |
testcase_09 | AC | 96 ms
12,032 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
ソースコード
#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(N); 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; }