# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
781752 | joelgun14 | Global Warming (CEOI18_glo) | C++17 | 97 ms | 3236 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define endl "\n"
#define mp make_pair
#define fi first
#define se second
#define lb lower_bound
using namespace std;
int main() {
int n, x;
cin >> n >> x;
int t[n + 1];
for(int i = 1; i <= n; ++i) {
cin >> t[i];
}
// find prefix lis/suffix lis, nanti cari yg max di mana
// suffix lis -> lds dr belakang
// prefix lis -> lis dr depan
int pref[n + 1], suff[n + 1];
vector<int> lis, lds;
for(int i = 1; i <= n; ++i) {
if(lower_bound(lis.begin(), lis.end(), t[i]) != lis.end()) {
lis[lower_bound(lis.begin(), lis.end(), t[i]) - lis.begin()] = t[i];
}
else {
lis.push_back(t[i]);
}
pref[i] = lb(lis.begin(), lis.end(), t[i]) - lis.begin() + 1;
}
for(int i = n; i >= 1; --i) {
if(lower_bound(lds.begin(), lds.end(), -t[i]) != lds.end()) {
# | 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... |