Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- C++
- 애셋로드
- 정렬
- 크리티컬섹션
- UE_LOG
- 강참조
- 자료구조
- map
- 약참조
- unorder_map
- 언리얼엔진구조체
- UML관련
- C++최적화
- 데이터애셋
- moreeffectiveC++
- 언리얼가비지컬렉터
- dataasset
- 선택정렬
- 람다
- BFS
- UELOG
- 델리게이트
- enumasByue
- 람다사용정렬
- 스마트포인터
- 알고리즘
- 정렬알고리즘
- UE4 커스텀로그
- 프로그래머스
- stl
Archives
- Today
- Total
기억을 위한 기록들
[백준 2108: 통계학] - C++ 본문
#include<iostream>
#include<vector>
#include<algorithm>
#include<math.h>
using namespace std;
int main() {
vector<int> arr;
vector<int> arr2(8001, 0);
int n;
double totalValue=0;
int maxValue =0;
int temp = 0;
int mode = 0;
bool isSecond = false;
cin >> n;
int input;
for (int i = 0; i < n; i++)
{
cin >> input;
arr.push_back(input);
totalValue += input;
temp = (arr[i] <= 0) ? abs(arr[i]) : arr[i] + 4000;
arr2[temp]++;
if (arr2[temp] > maxValue)
maxValue = arr2[temp];
}
sort(arr.begin(), arr.end());
double sansool = round(static_cast<double>(totalValue) /static_cast<double>(n));
int bumwee = arr.back() - arr.front();
int center = arr[n / 2];
for (int i = -4000; i < 4001; i++)
{
temp = i <= 0 ? abs(i) : i + 4000;
if (arr2[temp] == maxValue)
{
mode = i;
if (isSecond)
break;
isSecond = true;
}
}
cout << sansool << endl;
cout << center << endl;
cout << mode << endl;
cout << bumwee << endl;
return 0;
}
'Coding Test - cpp > Sort' 카테고리의 다른 글
[프로그래머스 lv 1 ] - K번째수 (0) | 2021.04.21 |
---|---|
[백준 10867: 중복 빼고 정렬하기] - C++ (0) | 2021.03.24 |
[백준 11650: 좌표 정렬하기] - C++ (0) | 2021.03.04 |
[백준 1181: 단어 정렬] - C++ (0) | 2021.02.19 |
[백준 1427: 소트인사이드] - C++ (0) | 2021.02.19 |