자료구조2 1620) 나는야 포켓몬 마스터 이다솜 (C++) 출처 https://www.acmicpc.net/problem/1620 1620번: 나는야 포켓몬 마스터 이다솜 첫째 줄에는 도감에 수록되어 있는 포켓몬의 개수 N이랑 내가 맞춰야 하는 문제의 개수 M이 주어져. N과 M은 1보다 크거나 같고, 100,000보다 작거나 같은 자연수인데, 자연수가 뭔지는 알지? 모르면 www.acmicpc.net 내 풀이 #include #include #include using namespace std; map pokemons; string pokemon_number[100001]; string pokemon = ""; int N = 0, M = 0; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(N.. 2022. 5. 15. 9012) 괄호 (C++) 출처 https://www.acmicpc.net/problem/9012 9012번: 괄호 괄호 문자열(Parenthesis String, PS)은 두 개의 괄호 기호인 ‘(’ 와 ‘)’ 만으로 구성되어 있는 문자열이다. 그 중에서 괄호의 모양이 바르게 구성된 문자열을 올바른 괄호 문자열(Valid PS, VPS)이라고 www.acmicpc.net 내 풀이 #include using namespace std; int N = 0; int open_ = 0; bool _NO = false; string input = " "; int main() { cin >> N; for (int i = 0; i > input; for (int j = 0; j < input.length(); j.. 2022. 5. 8. 이전 1 다음