250x250
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 |
Tags
- nightroutine
- 코테
- 완전탐색
- the midnight library
- 코테 대비
- 원서
- BFS
- dfs
- 원서읽기
- English
- 쉬운 알고리즘 문제
- STUDYENGLISH
- 직무면접
- englishbook
- 알고리즘 문제
- sw expert
- 코딩테스트
- sw expert academy
- readingbook
- MySQL
- SQL
- swexpertacademy
- D4
- 알고리즘
- 백준
- 코테 준비
- 원서읽자
- 프로그래머스
- PyQt
- 삼성
Archives
- Today
- Total
시나브로
14501. 퇴사 본문
728x90
완전 쉬운 완전탐색 문제입니다. 처음 편하게 시도하기에 적합한 문제인듯합니다.
Solution
- 재귀호출을 하면서 상담을 하는 경우와 안하는 경우 모두 탐색을 해줍니다.
- 그중에 max값을 선택합니다.
Key Point
완전탐색
#include<iostream>
#include<stdio.h>
#include<algorithm>
#include<vector>
#include<stdlib.h>
#include<queue>
using namespace std;
#define INF 10000000
int max_value = 0;
int n = 0;
int list[16][2] = { 0 };
void dfs(int value,int time) {
if (time+1 > n) {
if (value > max_value)
max_value = value;
return;
}
if (list[time][0] != -1) {
dfs(value + list[time][1], time+list[time][0]);
dfs(value, time + 1);
}
else
dfs(value, time + 1);
}
int main(void) {
freopen("inp.inp", "r", stdin);
freopen("out.out", "w", stdout);
cin >> n;
for (int i = 0; i < n; i++) {
cin >> list[i][0] >> list[i][1];
if (i + list[i][0] > n)
list[i][0] = -1;
}
dfs(0, 0);
cout << max_value;
return 0;
}
728x90
'알고리즘 > 백준' 카테고리의 다른 글
14889 스타트와 링크 (0) | 2020.06.04 |
---|---|
14502 연구소 (0) | 2020.06.04 |
14499. 주사위 굴리기 (0) | 2020.06.03 |
13460. 구술 탈출 2 (0) | 2020.06.03 |
13458. 시험감독 (0) | 2020.06.01 |
Comments