# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
855417 | MilosMilutinovic | 서열 (APIO23_sequence) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define fi first
#define se second
#define mp make_pair
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
int readint(){
int x=0,f=1; char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
return x*f;
}
const int N=5000500;
int n,a[N],val[N],pref[N];
vector<int> pos[N];
struct info{
ll mn_pref,mx_pref,mn_suff,mx_suff,tag;
}st[4*N];
int main(){
scanf("%d",&n);
for(int i=1;i<=n;i++) scanf("%d",&a[i]),pos[a[i]].pb(i);
//build(1,1,n);
for(int i=1;i<=n;i++) val[i]=1;
int ans=0;
for(int v=1;v<=n;v++){
if(pos[v].empty()) continue;
for(int j:pos[v]) val[j]=0;
// for(int j:pos[v]) modify(1,1,n,j,n,-1);
for(int i=1;i<=n;i++) pref[i]=pref[i-1]+val[i];
for(int l=1;l<=n;l++){
int cnt=0;
for(int r=l;r<=n;r++){
cnt+=(a[r]==v?1:0);
if(abs(pref[r]-pref[l-1])<=cnt) ans=max(ans,cnt);
}
}
// for(int j:pos[v]) modify(1,1,n,j,n,-1);
for(int j:pos[v]) val[j]=-1;
}
printf("%d\n",ans);
return 0;
}