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
- 원서읽기
- 코테
- englishbook
- sw expert
- D4
- 원서
- 코딩테스트
- 직무면접
- 백준
- swexpertacademy
- dfs
- 코테 대비
- PyQt
- STUDYENGLISH
- sw expert academy
- MySQL
- 삼성
- nightroutine
- SQL
- BFS
- 쉬운 알고리즘 문제
- 알고리즘
- 원서읽자
- 완전탐색
- 알고리즘 문제
- readingbook
- the midnight library
- 코테 준비
- 프로그래머스
- English
Archives
- Today
- Total
시나브로
[D5] 8191. 만화책 정렬하기 본문
728x90
#include <stdio.h>
int main() {
int test_case = 0;
scanf("%d", &test_case);
char buffer = 0;
scanf("%c", &buffer);
for (int q = 0; q < test_case; q++) {
int test_amount = 0;
scanf("%d", &test_amount);
int box = 0;
int m[200002] = { 0 };
int memory_point = 0;
for (int i = 0; i < test_amount; i++) {
scanf("%d", &box);
if (m[box-1] == 1) {
m[box] = 1;
}
else {
m[box] = 1;
memory_point++;
}
}
printf("#%d %d\n", q + 1, memory_point);
memory_point = 0;
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D4] 8382. 방향 전환 (0) | 2019.10.06 |
---|---|
[D3] 7732. 시간 개념 (0) | 2019.10.06 |
[D4] 7965. 퀴즈 (0) | 2019.10.06 |
[D3] 8016. 홀수 피라미드 (0) | 2019.10.06 |
[D3] 7985. Rooted Binary Tree 재구성 (0) | 2019.10.06 |
Comments