-

[삼성SW테스트] 백준 14501번 - 퇴사 (정답률 46%) 본문

1-1. 삼성 SW 테스트

[삼성SW테스트] 백준 14501번 - 퇴사 (정답률 46%)

asdklfjlasdlfkj 2020. 1. 13. 11:58

https://www.acmicpc.net/problem/14501

 

14501번: 퇴사

첫째 줄에 백준이가 얻을 수 있는 최대 이익을 출력한다.

www.acmicpc.net

삼성SW테스트 기출문제다. 

유형은 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
#include <iostream>
#include <algorithm>
#define INF 987654321
#define maxN 16
using namespace std;
int N;
int T[maxN], P[maxN];
int global_answer = -INF;
 
void dfs(int day, int sum){
    if (day == N+1){
        global_answer = max(global_answer, sum);
        return;
    }
    if (day > N + 1)
        return;
    dfs(day + 1, sum);
    dfs(day + T[day], sum + P[day]);
}
 
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
 
    cin >> N;
    for (int i = 1; i <= N; i++){
        cin >> T[i] >> P[i];
    }
    dfs(10);
    cout << global_answer << '\n';
    return 0;
}
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

Comments