# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
981966 | vjudge1 | 서열 (APIO23_sequence) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
int sequence(int n, vector <long long> a){
vector <vector <long long>> repe(n+1, vector<long long>(n+1));
for(int i=1; i<=n; i++){
for(int j=1; j<=n; j++){
repe[i][j] = repe[i][j-1] + (a[j-1] == i);
}
}
long long ans = 0;
for(int i=0; i<n; i++){
ordered_set st;
for(int j=i; j<n; j++){
st.insert(a[j]);
int x = st.order_of_key(j/2);
int y = st.order_of_key((j+1)/2);
ans = max(ans, repe[x][j+1]-repe[x][i]);
}
st.clear();
}
return ans;
}