이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int N;
vector<ll> x, e;
int main(){
cin >> N;
x.resize(N), e.resize(N);
map<ll, ll> tmp;
for(int i = 0; i < N; i++) cin >> x[i] >> e[i];
for(int i = 0; i < N; i++){
tmp[x[i]] = max(tmp[x[i]], e[i]);
}
if(*min_element(e.begin(), e.end()) == *max_element(e.begin(), e.end())){
cout << tmp.size();
return 0;
}
int sz = tmp.size(), ans = 0;
vector<bool> used(sz, 0);
vector<pair<ll, ll>> pos;
for(auto [x, y]: tmp){
pos.push_back({y, x});
}
sort(pos.rbegin(), pos.rend());
for(int i = 0; i < sz; i++){
if(used[i] == 1) continue;
ans++;
for(int j = i + 1; j < sz; j++){
if(used[j] == 1) continue;
ll xi = abs(pos[i].second - pos[j].second);
ll ei = pos[i].first - pos[j].first;
if(ei >= xi) used[j] = 1;
}
}
cout << ans;
}
# | 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... |