이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int n, x, y, h;
stack<pair<int, int>> s;
int main()
{
cin.tie(NULL)->sync_with_stdio(false);
cin>>n;
vector<pair<int, int>> v(n);
for (auto &[x, y]:v) cin>>x>>y;
sort(v.begin(), v.end());
for (auto [x, y]:v)
{
if (s.empty())
{
s.push({x, y});
continue;
}
if (s.top().second-y>=x-s.top().first) continue;
while (!s.empty()&&y-s.top().second>=x-s.top().first) s.pop();
s.push({x, y});
}
cout<<s.size();
}
# | 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... |