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 | 31 |
Tags
- 1563
- const
- 티스토리챌린지
- 줄 세우기
- UnrealEngine5
- baekjoon
- 백준
- RootMotion
- Programmers
- winapi
- 언리얼엔진5
- 오블완
- 2294
- C
- GeeksForGeeks
- softeer
- C++
- 프로그래머스
- algorithm
- Frustum
- DirectX11
- UnrealEngine4
- UE5
- directx
- DeferredRendering
- NRVO
- RVO
- Unreal Engine5
- 팰린드롬 만들기
- IFileDialog
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 4883번 :: 삼각 그래프 본문
https://www.acmicpc.net/problem/4883
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int t, n;
int matrix[100001][5] = { 0 };
int dp[100001][5] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t = 0;
while (1)
{
cin >> n;
if (n == 0) break;
++t;
for (int i = 1; i <= n; ++i)
{
cin >> matrix[i][1] >> matrix[i][2] >> matrix[i][3];
}
memset(dp, 0x3f, sizeof(dp));
dp[1][2] = matrix[1][2];
dp[1][3] = matrix[1][2] + matrix[1][3];
for (int i = 2; i <= n; ++i)
{
for (int j = 1; j <= 3; ++j)
{
dp[i][j] = min({ dp[i - 1][j - 1], dp[i - 1][j], dp[i - 1][j + 1], dp[i][j-1] }) + matrix[i][j];
}
}
printf("%d. %d\n", t, dp[n][2]);
}
}
|
cs |
최소값을 차례차례 누적시키면 되는 어렵지않은 문제인데, 지나치기 쉬운 조건이 있다.
일단 반드시 첫행의 가운데정점에서 시작하고, 마지막행의 가운데정점의 최소값을 출력하는 것이다.
그리고 주어지는 각 정점의 비용은 제곱갑이 1000,000이하인 값이 주어진다. 즉, 음수가 주어질 수도 있다는 것이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2229번 :: 조 짜기 (0) | 2024.04.22 |
---|---|
[Algorithm]Baekjoon 14852번 :: 타일 채우기 3 (0) | 2024.04.22 |
[Algorithm]Baekjoon 2602번 :: 돌다리 건너기 (0) | 2024.04.21 |
[Algorithm]Baekjoon 7570번 :: 줄 세우기 (0) | 2024.04.19 |
[Algorithm]Baekjoon 2666번 :: 벽장문의 이동 (1) | 2024.04.19 |