# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
968703 | blackslex | Global Warming (CEOI18_glo) | C++17 | 47 ms | 4704 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int n, d;
int main() {
scanf("%d %d", &n, &d);
vector<int> t(n), dp(n), dp2(n);
for (auto &e: t) scanf("%d", &e);
vector<int> c;
for (int i = 0; i < n; i++) {
auto lower = lower_bound(c.begin(), c.end(), t[i]);
if (lower == c.end()) c.emplace_back(t[i]), dp[i] = c.size();
else *lower = t[i], dp[i] = lower - c.begin() + 1;
}
int ans = c.size(); c.clear();
for (int i = n - 1; i >= 0; i--) {
auto lower = lower_bound(c.begin(), c.end(), -t[i]);
dp2[i] = lower_bound(c.begin(), c.end(), -t[i] + d) - c.begin();
if (lower == c.end()) c.emplace_back(-t[i]);
else *lower = -t[i];
}
for (int i = 1; i < n; i++) ans = max(ans, dp[i - 1] + dp2[i]);
printf("%d", ans);
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |