이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
struct node{
int x, e;
};
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n; cin>>n;
vector<node> t(n + 1);
for (int i = 1; i <= n; i++){
cin>>t[i].x>>t[i].e;
}
auto cmp = [&](node a, node b){
return a.x < b.x;
};
sort(t.begin() + 1, t.end(), cmp);
vector<int> d(n + 1), s(n + 1);
for (int i = 1; i <= n; i++){
d[i] = t[i].e - t[i].x;
s[i] = t[i].e + t[i].x;
}
vector<int> st;
for (int i = 1; i <= n; i++){
if (st.empty()){
st.push_back(i);
continue;
}
while (!st.empty() && t[i].x - t[st.back()].x <= t[i].e - t[st.back()].e){
st.pop_back();
}
if (st.empty() || !((t[i].x - t[st.back()].x) <= t[st.back()].e - t[i].e)){
st.push_back(i);
}
}
cout<<st.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... |