티스토리 뷰
728x90
반응형
계수 정렬에서 배열로 숫자의 빈도를 세는 방식을 응용해서 코드를 작성해보았습니다.
#include<stdio.h>
#include<math.h>
int N;
int sum;
int max = -5000, min = 5000;
int count[10000];
int temp;
int first_mode;
int second_mode=999999;
int mode;
//count sort
//ceil - 올림, floor - 내림
//반올림은 floor(x+0.5)
int main(void) {
scanf("%d", &N);
for (int i = 0; i < N; i++) {
scanf("%d", &temp);
sum += temp;
if (temp > max) max = temp;
if (temp < min) min = temp;
temp = temp + 4002;
count[temp]++;
}
printf("%d\n", (int)floor((double)sum / N + 0.5));
temp = 0;
for (int i = 0; i < 10000; i++) {
temp = temp + count[i];
if (temp >= (N / 2+1)) {
printf("%d\n", i-4002);
break;
}
}
temp = 0;
for (int i = 0; i < 10000; i++) {
if (temp < count[i]) {
temp = count[i];
first_mode = i-4002;
second_mode = 999999;
}
else if (temp == count[i] && second_mode == 999999) {
second_mode = i-4002;
}
}
if (second_mode == 999999) printf("%d\n", first_mode);
else printf("%d\n", second_mode);
printf("%d\n", max - min);
}
728x90
반응형
'알고리즘 > 문제풀이' 카테고리의 다른 글
[알고리즘/문제풀이/BOJ 10814번] 나이 순 정렬 (0) | 2021.06.20 |
---|---|
[알고리즘/문제풀이/BOJ 1181번] 단어 정렬 (0) | 2021.06.20 |
[알고리즘/문제풀이/BOJ 11651번] 좌표 정렬하기 2 (0) | 2021.06.19 |
[알고리즘/문제풀이/BOJ 11650번] 좌표 정렬하기 (0) | 2021.06.19 |
[알고리즘/문제풀이/BOJ 1427번] 소트인사이드 (0) | 2021.06.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 알고리즘
- BOJ
- 애니메이션
- 구조체
- 백트래킹
- 영화
- 재귀함수
- 큐
- gem5
- 정렬
- 너비우선탐색
- 건이의 특제 떡국 끓이기
- Push
- backtracking
- C++
- Git
- 완전탐색
- BFS
- 구현
- 베릴로그
- 백준
- C언어
- 영어 어휘
- 이진탐색
- 취미
- recursive
- 메이플스토리
- 스택
- Verilog
- 이분법
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함
반응형
250x250