문제 출처 : https://www.acmicpc.net/problem/18111
이 문제는 땅의 높이를 일정하게 바꾸어서 최소 시간과 땅의 높이를 출력하는 것이다.
최소 높이와 최대 높이를 찾아서 브루트 포스를 이용하여 해결 할 수 있었다.
아래는 이 문제를 해결한 소스이다.
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
|
#include<stdio.h>
#pragma warning(disable:4996)
int arr[501][501];
int main()
{
int N;
int M;
int B;
int max=-1;
int min=501;
int time_result = 99999999;
int block_height = 99999999;
scanf("%d %d %d", &N, &M, &B);
for (int i = 0; i < N; i++)
{
for (int j = 0; j < M; j++)
{
scanf("%d", &arr[i][j]);
if (min > arr[i][j])
min = arr[i][j];
if (max < arr[i][j])
max = arr[i][j];
}
}
for (int i = min; i <= max; i++)
{
int time = 0;
int block = B;
for (int j = 0; j < N; j++)
{
for (int k = 0; k < M; k++)
{
int height = arr[j][k]-i;
if (height > 0)
{
time = time + height * 2;
block = block + height;
}
else if (height < 0)
{
time = time - height;
block = block + height;
}
}
}
if (block >=0)
{
if (time <= time_result)
{
time_result = time;
block_height = i;
}
}
}
printf("%d %d", time_result, block_height);
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
'알고리즘' 카테고리의 다른 글
백준 1644번 문제 ( 소수의 연속합 ) (0) | 2020.02.10 |
---|---|
백준 15686번 문제 ( 치킨 배달 ) (0) | 2020.02.01 |
백준 2504번 문제 ( 괄호의 값 ) (0) | 2020.02.01 |
백준 9547번 문제 ( 대통령 선거 ) (0) | 2020.01.09 |
백준 10819번 문제 ( 차이를 최대로 ) (0) | 2020.01.09 |