[백준 C++] 4358번 생태학
https://www.acmicpc.net/problem/4358 4358번: 생태학 프로그램은 여러 줄로 이루어져 있으며, 한 줄에 하나의 나무 종 이름이 주어진다. 어떤 종 이름도 30글자를 넘지 않으며, 입력에는 최대 10,000개의 종이 주어지고 최대 1,000,000그루의 나무가 주어 www.acmicpc.net #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); string input; map map; int cnt = 0; while(!getline(cin, input).eof()) { if(map.count(input) == 0) { map[input] = 1;..
Algorithm/백준 - C++
2024. 4. 13. 18:20