# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985535 | ag_1204 | 사이버랜드 (APIO23_cyberland) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
void balance(multiset<int> s, multiset<int> t) {
while (s.size() > t.size() + 1) {
t.insert(*s.rbegin());
s.erase(prev(s.end()));
}
while (t.size() > s.size()) {
s.insert(*t.begin());
t.erase(t.begin());
}
}
int sequence(int N, std::vector<int> A) {
int ans=0;
for (int i=0;i<N;i++) {
map<int,int> m;
multiset<int> low, high;
for (int j=i;j<N;j++) {
if (low.empty() || A[j]<=*low.rbegin()) {
low.insert(A[j]);
} else {
high.insert(A[j]);
}
balance(low,high);
m[A[j]]++;
int m1 = *low.rbegin();
int m2 = (low.size()+high.size())%2==0?*high.begin():m1;
int occ1 = m[m1], occ2=m[m2];
ans = max(ans,(max(m1,m2)));
}
}
return ans;
}