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
- 정렬
- 스택
- c++
- 백트래킹
- VR
- 투 포인터
- Unreal Engine 5
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 구현
- 시뮬레이션
- 문자열
- 그래프
- 브루트포스
- 트리
- 그리디 알고리즘
- 누적 합
- 유니티
- 수학
- ue5
- 다익스트라
- BFS
- DFS
- 백준
- Team Fortress 2
- 재귀
- 자료구조
- 알고리즘
- 유니온 파인드
- 우선순위 큐
Archives
- Today
- Total
1일1알
백준 17178번 줄서기 C++ 본문
https://www.acmicpc.net/problem/17178
스택, 시뮬레이션
#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 <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n;
struct ticketInfo {
char alp;
int num;
bool operator<(const ticketInfo& other) const{
if (alp != other.alp) return alp < other.alp;
return num < other.num;
}
bool operator>(const ticketInfo& other) const{
if (alp != other.alp) return alp > other.alp;
return num > other.num;
}
bool operator==(const ticketInfo& other) const {
if (alp == other.alp && num == other.num) return true;
return false;
}
};
vector<ticketInfo> sortV;
vector<vector<ticketInfo>> v;
stack<ticketInfo> st;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
v = vector<vector<ticketInfo>>(n, vector<ticketInfo>(5));
for (int i = 0; i < n; i++) {
for (int j = 0; j < 5; j++) {
string str;
cin >> str;
string tmp = "";
char alp = str[0];
for (int k = 2; k < str.length(); k++) tmp += str[k];
int num = stoi(tmp);
v[i][j] = { alp,num };
sortV.push_back({ alp,num });
}
}
sort(sortV.begin(), sortV.end());
int idx = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < 5; j++) {
while (!st.empty()) {
if (st.top() == sortV[idx]) {
st.pop();
idx++;
}
else break;
}
if (v[i][j] == sortV[idx]) {
idx++;
continue;
}
else if (v[i][j] > sortV[idx]) {
st.push(v[i][j]);
}
}
}
while (!st.empty()) {
if (st.top() == sortV[idx]) {
st.pop();
idx++;
}
else break;
}
if (idx == n * 5) cout << "GOOD";
else cout << "BAD";
}
'알고리즘' 카테고리의 다른 글
백준 23351번 물 주기 C++ (0) | 2022.11.04 |
---|---|
백준 1245번 농장 관리 C++ (0) | 2022.11.03 |
백준 13905번 세부 C++ (0) | 2022.10.31 |
백준 2109번 순회강연 C++ (0) | 2022.10.30 |
백준 15789번 CTP 왕국은 한솔 왕국을 이길 수 있을까? C++ (1) | 2022.10.29 |