https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV13zo1KAAACFAYh
<풀이>
1. 학생들의 점수 입력을 받음과 동시에, 그 점수에 해당하는 학생 수를 갱신한다.
2. 가장 많은 학생 수를 찾고, 그 index를 출력한다.
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#include <iostream>
#include <cstring>
using namespace std;
int scores[101];
int main() {
int test_case;
int T;
cin >> T;
for (test_case = 1; test_case <= T; test_case++) {
//테스트 케이스 번호
int case_num;
cin >> case_num;
//점수마다 사람 수 배열 초기화
memset(scores, 0, sizeof(scores));
//학생 수 1000명만큼 반복
for (int i = 0; i < 1000; i++) {
int score;
cin >> score;
scores[score]++;
}
//사람이 가장 많은 점수 찾기
int res = 0;
int tmp = 0;
for (int i = 1; i < 101; i++) {
if (scores[i] >= tmp) {
tmp = scores[i];
res = i;
}
}
//출력
cout << "#" << case_num << " " << res << "\n";
}
return 0;
}
|
구현에 대해 알아볼 수 있는 문제였습니다.
'알고리즘 문제풀이 > SWEA' 카테고리의 다른 글
[C++] SWEA 1961 - 숫자 배열 회전 (0) | 2020.05.03 |
---|---|
[C++] SWEA 1206 - View (0) | 2020.05.03 |
[C++] SWEA 1210 - Ladder1 (0) | 2020.05.03 |
[C++] SWEA 1238 - Contact (0) | 2020.05.03 |
[C++] SWEA 1219 - 길찾기 (0) | 2020.05.03 |