이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;
using vpii = vector<pii>;
bool forces (pii parent, pii child) {
int dx = abs(parent.first - child.first);
int dE = parent.second - child.second;
return dx <= dE;
}
int main () {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int N;
cin >> N;
vpii people_array;
for (int i = 0; i < N; i ++) {
int x, E;
cin >> x >> E;
people_array.push_back({ x, E });
}
sort(people_array.begin(), people_array.end());
vpii stack;
for (pii man : people_array) {
if (stack.size() != 0 && forces(stack.back(), man)) continue ;
while (stack.size() != 0 && forces(man, stack.back())) stack.pop_back();
stack.push_back(man);
}
cout << stack.size() << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |