백준(C++)/자료구조110 [BOJ/C++]17414번_단어뒤집기 2 https://www.acmicpc.net/problem/17413★학교 시험때도 냈던 문제 (C언어로 했을 때보다 C++로 하는게 더 어려운 이상한 문) ##문제 풀기 전 내가 알고 있었어야 할 개념: 결과 문자열을 저장할 자료구조를 char 문자열이 아닌 Vector로 함(c언어와 다르게)나의 답이 Chat gpt의 답과 다를게 없는 논리 구조 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283#include iostream>#include deque>#include v.. 2024. 7. 13. [BOJ/C++]9093번_단어뒤집기 https://www.acmicpc.net/problem/9093#스택에 대표적인 문제..1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162#include iostream>#include string>#include stack> using namespace std; void init() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);} int main() { init(); int N; cin >> N; cin.ignore(); for (int i = .. 2024. 7. 11. 이전 1 2 3 다음