1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#include<iostream> using namespace std; int main(){ int m,n,ans=0; int l=0; int w[1001]; for(int i=0;i<=1001;i++){ w[i]=-1; } cin>>m>>n; for(int i=1;i<=n;i++){ int in; cin>>in; bool h=0; for(int o=0;o<=m;o++){ if(in==w[o]){ h=1; } } if(h==0){ if(l==m-1){ for(int o=0;o<m;o++){ w[o]=w[o+1]; } w[m-1]=in; }else{ w[l]=in; l++; } ans++; } } cout<<ans<<endl; return 0; }
|