# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1053023 | Piokemon | 거래 (IZhO13_trading) | C++17 | 155 ms | 29628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
constexpr int N = 3e5;
vector<pair<int,int>> wyd[N+9];
int odp[N+9];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,m,l,r,c;
cin >> n >> m;
for (int x=1;x<=m;x++){
cin >> l >> r >> c;
c-=l;
wyd[l].push_back({c,x});
wyd[r+1].push_back({c,-x});
}
set<pair<int,int>> ter; ter.insert({-2e9,-1});
for (int x=1;x<=n;x++){
for (pair<int,int> y:wyd[x]){
if (y.second>0)ter.insert(y);
else ter.erase({y.first,-y.second});
}
odp[x]=(*ter.rbegin()).first+x;
}
for (int x=1;x<=n;x++) cout << max(odp[x],0) << ' ';
cout << '\n';
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |