이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
set<pair<int, int> > s;
int n;
int getn() {
char ch = getchar_unlocked();
int ans = 0;
while(!isdigit(ch)) {
ch = getchar_unlocked();
}
while(isdigit(ch)) {
ans = ans * 10 + ch - '0';
ch = getchar_unlocked();
}
return ans;
}
int main() {
n = getn();
for(int i = 1; i <= n; i++) {
int a = getn();
int b = getn();
int x = a+b; int y = b-a;
auto sit = s.lower_bound({x, y});
if(sit != s.end() && sit->second >= y) continue;
if(sit != s.end() && make_pair(x, y) > (*sit)) sit = prev(s.erase(sit));
while(sit != s.begin() && prev(sit)->second <= y) sit = s.erase(prev(sit));
s.insert({x, y});
}
printf("%d\n", int(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... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |