Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 다이나믹 프로그래밍
- 스택
- 누적 합
- 수학
- Team Fortress 2
- XR Interaction Toolkit
- 다익스트라
- 자료구조
- 알고리즘
- c++
- Unreal Engine 5
- ue5
- 정렬
- VR
- 백준
- 구현
- 시뮬레이션
- BFS
- 브루트포스
- 재귀
- 백트래킹
- 투 포인터
- 우선순위 큐
- 문자열
- 유니티
- DFS
- 그래프
- 유니온 파인드
- 그리디 알고리즘
- 트리
Archives
- Today
- Total
1일1알
백준 2002번 추월 C++ 본문
들어간 차들은 벡터를 이용해 순서대로 문자열을 저장해서 들어간 순서로 차의 번호를 접근할 수 있게 만들었고,
나온 차들은 unordered_map<string, int> 를 이용해 차의 번호로 나온순서를 접근할 수 있게 만들었다.
들어간 차들을 검사하면서, 자신보다 먼저 들어온 차들 중 하나라도 자기보다 늦게 나왔다면 추월을 한 것이다.
들어간 차들을 순서대로 검사하면서 그 차의 번호를 이용하여 나온 차들의 순서를 접근하여 비교하면 문제를 해결할 수 있다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long ll;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
vector<string> v;
unordered_map<string, int> car_out;
int n;
int cnt = 0;
string str;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> str;
v.push_back(str);
}
for (int i = 0; i < n; i++) {
cin >> str;
car_out.insert({ str,i });
}
for (int i = 0; i < n; i++) {
string mycar = v[i];
for (int j = 0; j < i; j++) {
string othercar = v[j];
if (car_out[mycar] < car_out[othercar]) {
cnt++;
break;
}
}
}
cout << cnt;
};
'알고리즘' 카테고리의 다른 글
백준 5904번 Moo 게임 C++ (0) | 2021.12.07 |
---|---|
백준 15662번 톱니바퀴 (2) C++ (0) | 2021.12.06 |
백준 11568번 민균이의 계략 C++ (0) | 2021.12.04 |
백준 1342번 행운의 문자열 C++ (0) | 2021.12.03 |
백준 2410번 2의 멱수의 합 C++ (0) | 2021.12.02 |