일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- dirtyflag pattern
- level1
- LEVEL2
- stack
- 8-Puzzle
- Zenject
- Flyweight Pattern
- Unity
- level3
- effective C++
- Silver
- Modern C++
- BFS
- Gold
- Bronze
- 프로세스 상태
- PrefixSum
- solid 원칙
- two pointer
- binary search
- Euclidean
- SWEA
- 프로그래머스
- knapsack Problem
- programmers
- trie
- 3D RPG
- BOJ
- algorithm
- Project
Archives
- Today
- Total
Patrick's Devlog
[BOJ/C++] 성적 통계(5800번) 본문
1. 개요
https://www.acmicpc.net/problem/5800
1-1. 설명
한 고등학교 각 반의 학생들의 수학 시험 성적이 주어졌을 때 최대점수, 최소점수, 점수차이를 구하는 프로그램을 작성한다.
1-2. 제한 사항
- 첫줄은 고등학교 반의 수 K가 주어지며, 1 이상 100 이하
- K개 줄에는 각 반의 학생수 N과 각 학생 수학 성적이 이루어짐
- N은 2 이상 50 이하이며 성적은 0 이상 100 이하 정수
2. 구현
2-1. 풀이
최댓값과 최솟값은 입력을 받을때 같이 비교해주었다. 점수 차이는 내림차순이라는 가정하에 진행을 해야하므로, sort를 통해 내림차순으로 정렬하고 하나씩 비교하여 저장하였다.
2-2. 코드
#include <iostream>
#include <algorithm>
using namespace std;
int students[51];
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int K, N, maxNum, minNum, maxGap;
cin >> K;
for (int i = 0; i < K; i++) {
cin >> N;
maxGap = 0;
for (int j = 0; j < N; j++) {
cin >> students[j];
if (j == 0) {
maxNum = students[j];
minNum = students[j];
}
else {
if (maxNum < students[j]) maxNum = students[j];
else if (minNum > students[j]) minNum = students[j];
}
}
sort(students, students + N, greater<int>());
for (int j = 0; j < N - 1; j++) {
int curGap = students[j] - students[j + 1];
if (maxGap < curGap) maxGap = curGap;
}
cout << "Class " << i + 1 << "\n";
cout << "Max " << maxNum << ", Min " << minNum << ", Largest gap " << maxGap << "\n";
}
return 0;
}
'Algorithm > Algorithms Practice' 카테고리의 다른 글
[BOJ/C++] 동전 0(11047번) (0) | 2022.09.26 |
---|---|
[프로그래머스/C++] JadenCase 문자열 만들기 (3) | 2022.09.25 |
[BOJ/C++] 수들의 합(1789번) (0) | 2022.09.22 |
[BOJ/C++] 1, 2, 3 더하기(9095번) (0) | 2022.09.21 |
[BOJ/C++] 부분 수열의 합(1182번) (0) | 2022.09.20 |