# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
741237 | blackslex | Global Warming (CEOI18_glo) | C++17 | 63 ms | 7696 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const int N = 2e5 + 5;
ll n, k, a[N], b[N], ans;
vector<ll> v, u;
int main() {
scanf("%lld %lld", &n, &k);
for (int i = 1; i <= n; i++) scanf("%lld", &a[i]);
for (int i = 1; i <= n; i++) {
auto lower = lower_bound(v.begin(), v.end(), a[i]);
if (lower == v.end()) v.emplace_back(a[i]), b[i] = v.size();
else *lower = a[i], b[i] = lower - v.begin() + 1;
}
for (int i = n; i >= 1; i--) {
ll idx = lower_bound(u.begin(), u.end(), -a[i] + k) - u.begin();
ans = max(ans, b[i] + idx);
auto lower = lower_bound(u.begin(), u.end(), -a[i]);
if (lower == u.end()) u.emplace_back(-a[i]);
else *lower = -a[i];
}
printf("%lld", 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... |