0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:25:24 +00:00
OI-codes/AtCoder/ABC241/B/B.cpp

30 lines
493 B
C++

#include <iostream>
#include <map>
using std::cin;
using std::cout;
const char endl = '\n';
int n, m;
std::map<int, int> a;
int main() {
std::ios::sync_with_stdio(false);
cin >> n >> m;
for (int i = 1; i <= n; i++) {
int x;
cin >> x;
a[x]++;
}
for (int i = 1; i <= m; i++) {
int x;
cin >> x;
if (!a[x]--) {
cout << "No" << endl;
return 0;
}
}
cout << "Yes" << endl;
return 0;
}