-
Notifications
You must be signed in to change notification settings - Fork 0
/
swexpert_2115.cpp
71 lines (61 loc) · 1.49 KB
/
swexpert_2115.cpp
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include<cstdio>
#include<algorithm>
#include<vector>
#include<functional>
#define MAX_N 10
using namespace std;
int N, M, C;
int sqrt_val[10];
int map[MAX_N][MAX_N];
vector<int> list;
// 결과값 계산
int calc(){
int sum = 0;
for (int i = 0; i < list.size(); ++i)
sum += sqrt_val[list[i]];
return sum;
}
int dfs(int row, int col, int finish, int sum){
// 불가능한 경우일 경우
if (sum > C)
return 0;
// 범위 안을 모두 탐색했을 경우
if (col == finish)
return calc();
int max_val = 0;
// 현재 데이터 포함하는 경우
list.push_back(map[row][col]);
max_val = max(max_val, dfs(row, col + 1, finish, sum + map[row][col]));
// 현재 데이터 포함하지 않는 경우
list.pop_back();
max_val = max(max_val, dfs(row, col + 1, finish, sum));
return max_val;
}
int solve(){
// M개 선택
vector<int> result;
for (int i = 0; i < N; ++i){
int max_val = 0;
for (int j = 0; j <= N - M; ++j)
max_val = max(max_val, dfs(i, j, j + M, 0));
result.push_back(max_val);
}
// 내림차순 정렬
sort(result.begin(), result.end(), greater<int>());
// 첫번째와 두번째로 큰 수 합 출력
return result[0] + result[1];
}
int main(){
int T;
scanf("%d", &T);
for (int i = 1; i < 10; ++i)
sqrt_val[i] = i * i;
for (int test_case = 1; test_case <= T; ++test_case){
scanf("%d %d %d", &N, &M, &C);
for (int i = 0; i < N; ++i)
for (int j = 0; j < N; ++j)
scanf("%d", &map[i][j]);
printf("#%d %d\n", test_case, solve());
}
return 0;
}