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
- 그리디 알고리즘
- 그래프
- BFS
- 시뮬레이션
- 누적 합
- 백트래킹
- XR Interaction Toolkit
- 우선순위 큐
- DFS
- 재귀
- 문자열
- c++
- 알고리즘
- 자료구조
- 백준
- 정렬
- ue5
- 다이나믹 프로그래밍
- VR
- 브루트포스
- 구현
- 트리
- 수학
- 투 포인터
- 다익스트라
- Unreal Engine 5
- 스택
- Team Fortress 2
- 유니티
- 유니온 파인드
Archives
- Today
- Total
1일1알
백준 4358번 생태학 C++ 본문
백준에서는 입력이 파일로 들어오기 때문에 EOF를 읽게 되면 입력이 종료된다고 한다.
그래서 while (getline(cin, str))을 사용하면 된다.
맵 자료구조는 자동으로 정렬이 되기 때문에 입력받은 정보를 map<string, int>를 이용해 value값을 증가시켜주기만 하면 된다.
#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 <unordered_map>
#include <unordered_set>
using namespace std;
typedef long long ll;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
map<string, int> m;
string str;
int cnt = 0;
while (getline(cin, str)) {
cnt++;
m[str]++;
}
cout << fixed;
cout.precision(4);
for (auto a : m) {
cout << a.first << " " << (a.second / float(cnt)) * 100 << "\n";
}
};
'알고리즘' 카테고리의 다른 글
백준 2564번 경비원 C++ (0) | 2021.11.12 |
---|---|
백준 2589번 보물섬 C++ (0) | 2021.11.11 |
백준 11497 통나무 건너뛰기 C++ (0) | 2021.11.09 |
백준 2841번 외계인의 기타 연주 C++ (0) | 2021.11.08 |
백준 2493번 탑 C++ (0) | 2021.11.07 |