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
- SQL
- 직무면접
- sw expert
- 삼성
- 백준
- englishbook
- 코테
- 프로그래머스
- BFS
- dfs
- swexpertacademy
- readingbook
- D4
- 원서읽기
- 완전탐색
- 알고리즘
- MySQL
- the midnight library
- 코테 대비
- 원서
- PyQt
- 알고리즘 문제
- 원서읽자
- English
- sw expert academy
- 코테 준비
- 쉬운 알고리즘 문제
- nightroutine
- STUDYENGLISH
- 코딩테스트
Archives
- Today
- Total
시나브로
[D4] 8382. 방향 전환 본문
728x90
#include <stdio.h>
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 virtual_reality(0, amount + 1, x, y+1);
}
}
int main() {
int test_case = 0;
scanf("%d", &test_case);
char buffer = 0;
scanf("%c", &buffer);
for (int q = 0; q < test_case; q++) {
scanf("%d %d %d %d", &start_x, &start_y, &end_x, &end_y);
int signal = 0;
int box = virtual_reality(0, 0, start_x, start_y);
int box2= virtual_reality(1, 0, start_x, start_y);
if (box2 > box)
printf("#%d %d\n", q + 1, box);
else
printf("#%d %d\n", q + 1, box2);
}
return 0;
}
728x90
'알고리즘 > SW Expert Academy' 카테고리의 다른 글
[D4] 7465. 창용 마을 무리의 개수 (0) | 2019.10.12 |
---|---|
[D4] 7810. 승현이의 질문 (0) | 2019.10.06 |
[D3] 7732. 시간 개념 (0) | 2019.10.06 |
[D5] 8191. 만화책 정렬하기 (0) | 2019.10.06 |
[D4] 7965. 퀴즈 (0) | 2019.10.06 |
Comments