0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 11:45:25 +00:00
OI-codes/Luogu/problem/P1540/P1540.cpp

35 lines
671 B
C++
Raw Normal View History

2020-09-26 11:38:13 +00:00
// R38909558
#include <bits/stdc++.h>
using namespace std;
int main() {
int m, n, t, f = 0, ans = 0;
bool flag = false;
vector<int> memory;
queue<int> mq;
cin >> m >> n;
for (int i = 0; i < n; i++) {
cin >> t;
ans++;
flag = false;
for (int j = f; j < memory.size(); j++) {
if (memory[j] == t) {
ans--;
flag = true;
}
}
if (!flag) {
memory.push_back(t);
mq.push(t);
}
if (mq.size() > m) {
f++;
mq.pop();
}
}
cout << ans << endl;
return 0;
}