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
- the midnight library
- swexpertacademy
- 백준
- dfs
- 삼성
- 쉬운 알고리즘 문제
- 알고리즘
- 코테 대비
- readingbook
- 코테
- sw expert academy
- SQL
- 완전탐색
- 원서읽기
- englishbook
- 원서읽자
- MySQL
- nightroutine
- BFS
- 직무면접
- English
- D4
- 프로그래머스
- STUDYENGLISH
- 원서
- PyQt
- 알고리즘 문제
- 코딩테스트
- sw expert
- 코테 준비
Archives
- Today
- Total
목록만화책 정렬하기 (1)
시나브로
[D5] 8191. 만화책 정렬하기
#include 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..
알고리즘/SW Expert Academy
2019. 10. 6. 11:10