# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
320507 | sofapuden | 거래 (IZhO13_trading) | C++14 | 515 ms | 19648 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
int n, m; cin >> n >> m;
vector<array<int,3>> toAdd, toRem;
for(int i = 0; i < m; ++i){
int l, r, x; cin >> l >> r >> x;
toAdd.push_back({l,r,x-l});
toRem.push_back({r,l,x-l});
}
sort(toAdd.begin(), toAdd.end());
sort(toRem.begin(), toRem.end());
int cnl = 0, cnr = 0;
map<int,int> M;
for(int i = 1; i <= n; ++i){
while(toAdd[cnl][0] == i){
M[toAdd[cnl++][2]]++;
}
while(toRem[cnr][0] == i-1){
M[toRem[cnr][2]]--;
if(!M[toRem[cnr][2]]){
M.erase(toRem[cnr][2]);
}
cnr++;
}
if(M.empty()){
cout << "0 ";
}
else{
cout << prev(M.end())->first + i << " ";
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |