[BOJ] 4358번 : 생태학
문제 링크 : 백준 4358번
[문제 접근]
map을 이용하면 간단하게 풀 수 있는 문제지만 EOF를 입력받을 때까지 입력하는 것과 소숫점 아래 4번째자리까지 출력하는 부분을 공부했다.
[소스 코드]
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <map>
using namespace std;
string s;
map<string, int> m;
int main(){
double total = 0;
while(getline(cin, s)) {
m[s] = m[s]+1;
total++;
}
cout << fixed;
cout.precision(4);
map<string, int>::iterator it;
for(it=m.begin() ; it!=m.end() ; it++) {
cout << it->first << " " << (it->second/total)*100 << "\n";
}
return 0;
}
Author And Source
이 문제에 관하여([BOJ] 4358번 : 생태학), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@soosungp33/BOJ-4358번-생태학저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)