# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
344510 | nandonathaniel | 거래 (IZhO13_trading) | C++14 | 13 ms | 14700 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
const int MAXN=300005;
vector<pii> masuk[MAXN];
vector<int> keluar[MAXN];
long long tree[4*MAXN],lazy[4*MAXN];
void updatenode(int now,int val){
tree[now]+=val;
lazy[now]+=val;
}
void pushdown(int now){
updatenode(2*now,lazy[now]);
updatenode(2*now+1,lazy[now]);
lazy[now]=0;
}
void update(int now,int L,int R,int x,int y,int val){
if(L>=x && R<=y){
updatenode(now,val);
return;
}
if(L>y || R<x)return;
int mid=(L+R)/2;
pushdown(now);
update(2*now,L,mid,x,y,val);
update(2*now+1,mid+1,R,x,y,val);
tree[now]=max(tree[2*now],tree[2*now+1]);
}
int query(int now,int L,int R,int x,int y){
if(L>=x && R<=y)return tree[now];
if(L>y || R<x)return -2e9;
int mid=(L+R)/2;
pushdown(now);
return max(query(2*now,L,mid,x,y),query(2*now+1,mid+1,R,x,y));
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n,m,l,r,x;
cin >> n >> m;
for(int i=1;i<=m;i++){
cin >> l >> r >> x;
masuk[l].push_back({i,x});
keluar[r+1].push_back(i);
update(1,1,m,i,i,-2e9);
}
for(int i=1;i<=n;i++){
for(auto isi : keluar[i])update(1,1,m,isi,isi,-2e9);
for(auto isi : masuk[i])update(1,1,m,isi.first,isi.first,2e9-i+isi.second);
update(1,1,m,1,m,1);
int brp=query(1,1,m,1,m);
if(brp<1)brp=0;
cout << brp;
if(i<n)cout << " ";
}
cout << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |