일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 넷플릭스
- 알고리즘
- usaco
- 영어
- kakao
- 추천
- parametric search
- Netflix
- array
- 카카오
- Recursive
- coding
- BOJ
- Movie
- 코딩 테스트
- health
- 리뷰
- 2020
- 백준
- 완전탐색
- Algorithm
- Greedy
- 나는솔로
- silver
- review
- benefits
- BFS
- 수능
- 영화
- 해설
Archives
- Today
- Total
Young
BOJ - 마라톤1 (10655) 본문
728x90
반응형
https://www.acmicpc.net/problem/10655
그리 어렵지 않습니다.
하지만 O(N^2) 알고리즘은 절대 통하지 않습니다.
효율성을 위해서 우선 전체 길이를 구해놓고 시작하면 O(N)으로 줄일 수 있습니다.
하나를 건너뛸 때와 건너 뛰지 않을 때의 차를 구해서, 이 중 가장 많이 줄일 수 있는 값을 찾아
전체 길이에서 빼주면 됩니다.
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
32
33
34
35
36
37
38
39
40
41
|
#include <bits/stdc++.h>
using namespace std;
struct ss {
int y, x;
};
int n, m;
vector<ss> v;
int main() {
int ans = 0;
int cy, cx;
int total = 0;
cin >> n;
cin >> cx >> cy;
v.push_back({ cx, cy }); // 처음에 시작점을 세팅하기 위해 따로 빼줌
for (int i = 0; i < n - 1; i++) {
int a, b;
cin >> a >> b;
v.push_back({ a,b });
total += abs(cx - a) + abs(cy - b);
cx = a, cy = b; // 그 다음으로 이동하는 효과를 줌
}
ans = total; // 모두 일직선 상에 있다면 길이가 줄어들지 않는다.
int skip = 0; // 줄일 수 있는 최댓값을 저장하는 변수
for (int i = 1; i < n - 1; i++) { // 시작점과 마지막 점은 건너뛸 수 없으므로
ss prev = v[i - 1], cur = v[i], next = v[i + 1];
int dist = abs(prev.x - cur.x) + abs(prev.y - cur.y) + abs(cur.x - next.x) + abs(cur.y - next.y); // 건너뛰지 않는 경우의 길이
int straight = abs(prev.x - next.x) + abs(prev.y - next.y); // 건너뛰는 경우의 길이
skip = max(skip, dist - straight);
}
cout << total - skip;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
728x90
반응형
'코딩 테스트 대비 추천 문제' 카테고리의 다른 글
BOJ - 공주님을 구해라! (17836) (0) | 2019.12.03 |
---|---|
BOJ - 카드 놓기 (5568) (0) | 2019.12.03 |
BOJ - 달팽이 리스트 (17827) (0) | 2019.12.03 |
정사각 배열 대각선 순서로 접근 (0) | 2019.04.06 |
정사각 배열 90도 회전 (0) | 2019.04.06 |