0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-11 16:31:58 +00:00

P1540 机器翻译

R38909558
This commit is contained in:
Baoshuo Ren 2020-09-26 19:38:13 +08:00 committed by Baoshuo Ren
parent 219f8bdb60
commit 64aa29fd27
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

34
problem/P1540/P1540.cpp Normal file
View File

@ -0,0 +1,34 @@
// 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;
}