# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
929213 | Karoot | 거래 (IZhO13_trading) | C++17 | 241 ms | 36920 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cmath>
#include <unordered_map>
#include <map>
#include <set>
#include <queue>
#include <vector>
#include <string>
#include <iomanip>
#include <algorithm>
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using namespace std;
typedef long long ll;
ll linf = 1e15+1;
inline void scoobydoobydoo(){
ios::sync_with_stdio(false);
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
}
multiset<ll> ms;
vector<ll> start[300001];
vector<ll> ende[300001];
int main(){
scoobydoobydoo();
int n, m; cin >> n >> m;
for (int i = 0; i < m; i++){
int l, r, X; cin >> l >> r >> X;
l--; r--;
start[l].push_back(X-l);
ende[r+1].push_back(X-l);
}
for (int i = 0; i < n; i++){
for (int x : start[i])ms.insert(x);
for (int x : ende[i]){
auto it = ms.find(x);
ms.erase(it);
}
if (ms.empty())cout << 0 << " ";
else cout << *ms.rbegin()+i << " ";
}
cout << endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |