일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 시간복잡도
- Django Nodejs 차이점
- 프레임워크와 라이브러리의 차이
- k-eta
- UI한글변경
- 표준 입출력
- c++
- scanf
- Django란
- string 함수
- 장고란
- 2557
- 백준
- double ended queue
- string 메소드
- iOS14
- 자료구조
- 구조체와 클래스의 공통점 및 차이점
- 이분그래프
- 입출력 패턴
- 연결요소
- 알고리즘 공부방법
- EOF
- vscode
- 입/출력
- getline
- correlation coefficient
- 매크로
- 엑셀
- Django의 편의성
Archives
- Today
- Total
Storage Gonie
(7) [C++] 백준 No.11652 : 카드 본문
반응형
문제
풀이
자세한 풀이 : https://ldgeao99.tistory.com/entry/챕터5-5-정렬-문제풀이2-1
# C++(선정렬 후 카운트)
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
int n;
cin >> n;
// 숫자입력받기
vector<long long> v(n);
for (int i = 0; i < n; i++)
cin >> v[i];
// 정렬하기
sort(v.begin(), v.end());
// 숫자를 카운트 하기
long long num;
int num_count = 0;
int temp_count = 0;
for (int i = 0; i < n; i++){
temp_count += 1;
if(i == n-1 || v[i] != v[i+1]){
if(num_count < temp_count){
num = v[i];
num_count = temp_count;
}
else if(num_count == temp_count && num > v[i]){
num = v[i];
}
temp_count = 0;
}
}
cout << num << "\n";
}
# C++(map 이용)
#include <iostream>
#include <map>
using namespace std;
int main()
{
int n;
cin >> n;
map<long long, int> m;
// 숫자를 입력받아 카운트 하기
while (n--)
{
long long num;
cin >> num;
m[num] += 1; // map에서 int형 인경우 초기값은 0이다.
}
// 카운트한 개수가 큰 수 찾기(카운트한 개수가 같은 경우는 작은 수를 저장)
long long num;
int count = 0;
for (auto p : m) // p는 pair타입
{
if (count < p.second){
num = p.first;
count = p.second;
}
else if (count == p.second && num > p.first)
num = p.first;
}
cout << num << "\n";
}
반응형
'알고리즘 > 백준풀이8. 정렬' 카테고리의 다른 글
(9) [C++] 백준 No.1377 : 버블 소트 (0) | 2019.05.19 |
---|---|
(8) [C++] 백준 No.11004 : K번째 수 (0) | 2019.05.19 |
(6) [C++] 백준 No.10989 : 수 정렬하기 3 (0) | 2019.05.14 |
(5) [C++] 백준 No.10825 : 국영수 (0) | 2019.05.14 |
(4) [C++] 백준 No.10814 : 나이순 정렬 (2) | 2019.05.14 |
Comments