이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
inline int readInt() {
int x = 0;
char ch = getchar_unlocked();
bool s = 1;
while (ch < '0' || ch > '9') {
if (ch == '-') {
s = 0;
ch = getchar_unlocked();
}
}
while (ch >= '0' && ch <= '9') {
x = (x << 3) + (x << 1) + ch - '0';
ch = getchar_unlocked();
}
return s ? x : -x;
}
stack<pair<int, int>> s;
int main() {
int n = readInt();
for (int i = 0; i < n; i++) {
int x = readInt();
int y = readInt();
bool add = 1;
while (s.size()) {
int tx = s.top().first;
int ty = s.top().second;
if (x - tx <= ty - y) {
add = 0;
break;
}
if (x - tx <= y - ty) {
s.pop();
} else {
break;
}
}
if (add) {
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... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |