일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- readingbook
- 삼성
- 알고리즘 문제
- PyQt
- 원서읽기
- 원서
- swexpertacademy
- englishbook
- dfs
- English
- SQL
- nightroutine
- 알고리즘
- STUDYENGLISH
- 프로그래머스
- 코딩테스트
- 코테
- 완전탐색
- MySQL
- 직무면접
- the midnight library
- 백준
- 원서읽자
- 쉬운 알고리즘 문제
- 코테 대비
- sw expert
- 코테 준비
- BFS
- sw expert academy
- D4
- Today
- Total
목록알고리즘 (77)
시나브로
#include int start_x = 0; int start_y = 0; int end_x = 0; int end_y = 0; int virtual_reality(int signal,int amount,int x, int y) { if (x == end_x&&end_y == y) return amount; if (signal == 0) { if (x > end_x) return virtual_reality(1, amount + 1, x - 1, y); else return virtual_reality(1, amount + 1, x + 1, y); } else { if (y > end_y) return virtual_reality(0, amount + 1, x, y-1); else return virt..
#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 present_hours = 0; int present_min = 0; int present_second = 0; int future_hours = 0; int future_min = 0; int future_second = 0; int remain_hours = 0; int remain_second = 0; int remain_min = 0; scanf("%d:%d:%d",&present_hours,&present_min,&present_sec..
#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..
#include long long sequal[1000002][2] = { 0 }; int main() { int test_case = 0; scanf("%d", &test_case); char buffer = 0; scanf("%c", &buffer); long long last_point = 0; sequal[0][0] = 0; sequal[0][1] = 0; for (int q = 0; q < test_case; q++) { long long number = 0; scanf("%d", &number); for (int i = last_point+1; i