Notice
Recent Posts
Recent Comments
Link
알고리즘 모음(C++)
백준 7785 - 회사에 있는 사람(C++) 본문
문제 링크입니다. https://www.acmicpc.net/problem/7785
map을 사용해, enter문자열이 입력된다면 값을 추가, leave문자열이 들어온다면 이름을 찾은 뒤 삭제해주면 됩니다.
map을 찾는 이유는 n의 값이 2,000,000이기에 for문을 사용한다면 시간초과가 생기기 때문입니다.
자세한 것은 코드를 참고해주세요.
#define _CRT_SECURE_NO_WARNINGS
#include <cstring>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#include <cstdio>
#include <string>
#include <map>
using namespace std;
int N;
map<string, int> people;
vector<string> name;
int main() {
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 1; i <= N; i++){
string x, y;
cin >> x >> y;
if(y == "enter"){
people.insert({x, 1});
}
else{
if(people.find(x) != people.end()){
people.erase(people.find(x));
}
}
}
map<string, int> ::iterator k;
for(k = people.begin(); k != people.end(); k++){
name.push_back(k->first);
}
for(int i = name.size()-1; i >= 0; i--){
cout << name[i] << "\n";
}
return 0;
}
질문 및 조언은 댓글을 남겨주세요.
'백준' 카테고리의 다른 글
백준 24416 - 알고리즘 수업 - 피보나치 수 1(C++) (0) | 2023.12.14 |
---|---|
백준 1269 - 대칭 차집합(C++) (0) | 2023.12.14 |
백준 14461 - 소가 길을 건너간 이유 7(C++) (0) | 2023.12.12 |
백준 14215 - 세 막대(C++) (1) | 2023.12.10 |
백준 5073 - 삼각형과 세 변(C++) (0) | 2023.12.09 |