| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1101844 | blackslex | 지구 온난화 (NOI13_gw) | C++17 | 224 ms | 18736 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using pii = pair<int, int>;
int n;
int main() {
scanf("%d", &n);
vector<int> a(n), par(n); iota(par.begin(), par.end(), 0);
vector<bool> ck(n);
for (auto &e: a) scanf("%d", &e);
int cnt = 0, ans = 0;
function<int(int)> fset = [&] (int x) {return (par[x] == x ? x : par[x] = fset(par[x]));};
auto mg = [&] (int x, int y) {
if ((x = fset(x)) == (y = fset(y))) return;
if (ck[x] && ck[y]) cnt--, par[x] = y;
else if (!ck[x] && !ck[y]) cnt++, par[y] = x;
else par[y] = x;
ck[x] = ck[y] = 1;
};
vector<pii> c;
for (int i = 0; i < n; i++) c.emplace_back(a[i], i);
sort(c.begin(), c.end());
for (int i = n - 1; i >= 0; i--) {
int e = c[i].second;
if (e && a[e - 1] >= a[e]) mg(e - 1, e);
if (e != n - 1 && a[e + 1] >= a[e]) mg(e, e + 1);
if (!ck[e]) cnt++, ck[e] = 1;
if (i && c[i - 1].first == c[i].first) continue;
ans = max(ans, cnt);
}
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... | ||||
