250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코테 대비
- sw expert academy
- 코테 준비
- 원서읽자
- 원서읽기
- the midnight library
- D4
- 삼성
- 쉬운 알고리즘 문제
- 알고리즘
- 코딩테스트
- 완전탐색
- MySQL
- BFS
- swexpertacademy
- englishbook
- SQL
- readingbook
- STUDYENGLISH
- English
- 직무면접
- 코테
- sw expert
- 백준
- dfs
- 알고리즘 문제
- 원서
- PyQt
- 프로그래머스
- nightroutine
Archives
- Today
- Total
시나브로
[D3] 6913. 동철이의 프로그래밍 대회 본문
728x90
#include <stdio.h>
int compare(const void* first, const void* second)
{
if (*(int*)first > *(int*)second)
return -1;
else if (*(int*)first < *(int*)second)
return 1;
else
return 0;
}
int main() {
int test_number = 0;
scanf("%d\n", &test_number);
for (int p = 0; p < test_number; p++) {
int person_number = 0;
int problem_number = 0;
int person[22] = { 0 };
scanf("%d %d", &person_number, &problem_number);
for (int i = 0; i < person_number; i++) {
for (int j = 0; j < problem_number; j++) {
int price = 0;
scanf("%d", &price);
if (price == 1) {
person[i]++;
}
}
}
person[person_number] = -1;
qsort(person, person_number, sizeof(int), compare);
for (int i = 0; i <= person_number; i++) {
if (person[i - 1] > person[i]) {
printf("#%d %d %d\n", p+1, i, person[i - 1]);
break;
}
}
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D3] 7087. 문제 제목 붙이기 (0) | 2019.10.06 |
---|---|
[D4] 6719. 성수의 프로그래밍 강좌 시청 (0) | 2019.10.06 |
[D2] 2007. 패턴 마디의 길이 (0) | 2019.10.06 |
[D3] 3456. 직사각형 길이 찾기 (0) | 2019.10.06 |
[D3] 1206. [S/W 문제해결 기본] 1일차 - View (0) | 2019.10.06 |
Comments