[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][1952번]수영장
본문 바로가기

알고리즘 문제풀기/SWEA

[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][1952번]수영장

반응형

DFS를 이용하여 풀 수 있는 문제였습니다.

 

 

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
#include<iostream>
#include<memory.h>
#include<algorithm>
using namespace std;
 
int price[5]; //하루 한달 3달 1년
int year[13];
int ans;
bool visited[13];
 
void dfs(int start,int temp_ans) {
    if (start > 12) {
        if (temp_ans > price[4]) {
            temp_ans = price[4];
        }
        ans = min(ans, temp_ans);
        return;
    }
    if (price[1* year[start] < price[2]) {
        dfs(start + 1, temp_ans + price[1* year[start]);
    }
    else
        dfs(start + 1, temp_ans + price[2]);
    dfs(start + 3, temp_ans + price[3]);
}
 
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);
    int T;
    scanf("%d"&T); 
    //cin >> T;
    for (int t = 1; t <= T; t++) {
        ans = 987654321; memset(visited, falsesizeof(visited));
        for (int i = 1; i < 5; i++) {
            scanf("%d"&price[i]);
            //cin >> price[i];
        }
        for (int i = 1; i < 13; i++) {
            scanf("%d"&year[i]);
            //cin >> year[i];
        }
        dfs(10);
        cout <<"#"<<t<<" "<< ans<<endl;
    }
    
}
 
 
 
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

반응형