标签:des style blog http color io os ar for
题解:
貌似做过这种类型的题好多次了,可是这次数据范围奇大啊。
如果n<=500 m<=500 大概可以费用流搞掉。。
扩大了100倍。。。
然后贪心大法上场了:
当前要取出的那个玩具在序列中下一次出现的位置要尽量靠后。用堆维护。
好神的贪心。。。
有道理但是严格的正确性还不会T_T
挖坑
代码:
1 #include<cstdio> 2 #include<cstdlib> 3 #include<cmath> 4 #include<cstring> 5 #include<algorithm> 6 #include<iostream> 7 #include<vector> 8 #include<map> 9 #include<set> 10 #include<queue> 11 #include<string> 12 #define inf 1000000000 13 #define maxn 500000+100 14 #define maxm 500+100 15 #define eps 1e-10 16 #define ll long long 17 #define pa pair<int,int> 18 #define for0(i,n) for(int i=0;i<=(n);i++) 19 #define for1(i,n) for(int i=1;i<=(n);i++) 20 #define for2(i,x,y) for(int i=(x);i<=(y);i++) 21 #define for3(i,x,y) for(int i=(x);i>=(y);i--) 22 #define mod 1000000007 23 using namespace std; 24 inline int read() 25 { 26 int x=0,f=1;char ch=getchar(); 27 while(ch<‘0‘||ch>‘9‘){if(ch==‘-‘)f=-1;ch=getchar();} 28 while(ch>=‘0‘&&ch<=‘9‘){x=10*x+ch-‘0‘;ch=getchar();} 29 return x*f; 30 } 31 int n,m,k,ans,cnt,a[maxn],last[maxn],next[maxn]; 32 bool v[maxn]; 33 priority_queue<pa,vector<pa>,less<pa> >q; 34 int main() 35 { 36 freopen("input.txt","r",stdin); 37 freopen("output.txt","w",stdout); 38 n=read();k=read();m=read(); 39 for1(i,m) 40 { 41 a[i]=read(); 42 next[last[a[i]]]=i; 43 last[a[i]]=i; 44 } 45 for1(i,n)next[last[i]]=m+1; 46 for(int i=1;i<=m;i++) 47 { 48 if(v[a[i]]){q.push(pa(next[i],a[i]));continue;} 49 if(cnt<k) 50 { 51 cnt++;ans++; 52 q.push(pa(next[i],a[i])); 53 v[a[i]]=1; 54 } 55 else 56 { 57 v[q.top().second]=0; 58 q.pop(); 59 v[a[i]]=1;ans++; 60 q.push(pa(next[i],a[i])); 61 } 62 } 63 printf("%d\n",ans); 64 return 0; 65 }
BZOJ1528: [POI2005]sam-Toy Cars
标签:des style blog http color io os ar for
原文地址:http://www.cnblogs.com/zyfzyf/p/4020340.html