# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1010515 | ivopav | 거래 (IZhO13_trading) | C++17 | 299 ms | 27952 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
int m;
cin >> n >> m;
vector<vector<pair<bool,int>>> dog(n+3,vector<pair<bool,int>>{});
for (int i=0;i<m;i++){
int unos;
int unos2;
int unos3;
cin >> unos >> unos2 >> unos3;
dog[--unos].push_back({0,unos3-unos});
dog[unos2].push_back({1,unos3-unos});
}
multiset<int> tra={};
for (int i=0;i<n;i++){
for (int j=0;j<dog[i].size();j++){
if (dog[i][j].first==0){
tra.insert(dog[i][j].second);
}
else {
tra.erase(tra.find(dog[i][j].second));
}
}
if (tra.size()==0){
cout << "0 ";
}
else {
cout << (*(tra.rbegin()))+i << " ";
}
}
cout << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |