[白俊]7785号
💻 C++ベース
https://www.acmicpc.net/problem/7785
https://www.acmicpc.net/problem/7785
#include <iostream>
#include <unordered_set>
#include <algorithm>
#include <vector>
using namespace std;
unordered_set<string> s;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
while (n--)
{
string name, log;
cin >> name >> log;
if (log == "enter")
{
s.insert(name);
}
else
{
s.erase(name);
}
}
vector<string> ans(s.begin(), s.end());
sort(ans.begin(), ans.end(), greater<string>());
for (vector<string>::iterator i = ans.begin(); i != ans.end(); i++)
{
cout << *i << '\n';
}
return 0;
}
Reference
この問題について([白俊]7785号), 我々は、より多くの情報をここで見つけました https://velog.io/@jieun_han/백준-7785번テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol