记录编号 |
245721 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
[USACO Feb08] 麻烦的聚餐 |
最终得分 |
100 |
用户昵称 |
派特三石 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.000 s |
提交时间 |
2016-04-04 14:51:58 |
内存使用 |
0.00 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn=31000;
int n;
int f[maxn];
int rf[maxn];
int a[maxn];
int last[5];
int init()
{
freopen("egroup.in","r",stdin);
freopen("egroup.out","w",stdout);
scanf("%d",&n);
int ans=0;
for(int i=1;i<=n;++i)
{
int x;
scanf("%d",&x);
for(int j=1;j<=x;++j)
{
if(f[i]<f[last[j]]+1)f[i]=f[last[j]]+1;
}
ans=max(f[i],ans);
for(int j=x;j<=3;++j)
{
if(rf[i]<rf[last[j]]+1)rf[i]=rf[last[j]]+1;
}
ans=max(rf[i],ans);
last[x]=i;
}
// for(int i=1;i<=5;++i)cout<<last[i]<<endl;
printf("%d",n-ans);
return 0;
}
int you=init();
int main()
{
;
}