이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pii pair<int, int>
#define ff first
#define ss second
#define pb push_back
bool contain(pii lhs, pii rhs) {
return abs(lhs.ff - rhs.ff) <= (lhs.ss - rhs.ss);
}
int main() {
ios::sync_with_stdio(0); cin.tie(0);
int n; cin >> n;
pii a[n];
for (int i = 0; i < n; i++) cin >> a[i].ff >> a[i].ss;
sort(a, a + n);
vector<pii> sel;
for (int i = 0; i < n; i++) {
while (!sel.empty()) {
if (contain(a[i], sel.back())) sel.pop_back();
else break;
}
if (sel.empty() || !contain(sel.back(), a[i])) {
sel.pb(a[i]);
}
}
cout << sel.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... |