반응형
C++
#include <iostream>
#include <set>
#include <vector>
using namespace std;
int main()
{
cin.tie(0)->sync_with_stdio(0);
int N, idx;
string name, status;
set<string> S;
cin >> N;
while (N--)
{
cin >> name >> status;
if (status == "enter")
S.insert(name);
else
S.erase(name);
}
// set의 내용물을 거꾸로 vector에 복사
vector<string> V(S.rbegin(), S.rend());
for (auto c : V)
cout << c << "\\n";
}
반응형