# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
314276 | BeanZ | 거래 (IZhO13_trading) | C++14 | 201 ms | 13924 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// I_Love_LPL
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
const int N = 3e5 + 5;
struct viet{
ll l, r, x;
bool operator <(const viet &o) const{
return l < o.l;
}
}a[N];
struct lpl{
ll l, r, x;
bool operator <(const lpl &o) const{
return (l - x) > (o.l - o.x);
}
};
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
if (fopen("A.inp", "r")){
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
}
ll n, m;
cin >> n >> m;
for (int i = 1; i <= m; i++){
cin >> a[i].l >> a[i].r >> a[i].x;
}
sort(a + 1, a + m + 1);
ll now = 1;
priority_queue<lpl> pq;
for (int i = 1; i <= n; i++){
while (now <= m && a[now].l == i){
lpl x = {a[now].l, a[now].r, a[now].x};
pq.push(x);
now++;
}
while (pq.size()){
if (pq.top().r < i) pq.pop();
else break;
}
if (pq.size() == 0) cout << 0 << " ";
else {
cout << i - pq.top().l + pq.top().x << " ";
}
}
}
/*
*/
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |