Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이런게4문제
- 레벨2
- 코딩테스트
- 백준
- priority_queue
- 삼성
- swea
- STL
- KAKAO
- Sort
- 시뮬레이션
- Map
- 레벨3
- 삼성SW테스트
- 브루트포스
- 2018
- 백트래킹
- find
- 완전탐색
- dfs
- 문자열
- Set
- BFS
- C++
- dp
- 모의SW역량테스트
- 삼성SW역량테스트
- 프로그래머스
- substr
- 코딩스킬
Archives
- Today
- Total
-
[삼성SW테스트] 백준 14501번 - 퇴사 (정답률 46%) 본문
https://www.acmicpc.net/problem/14501
삼성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(1, 0);
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 |
'1-1. 삼성 SW 테스트' 카테고리의 다른 글
[삼성SW테스트] 백준 14499번 - 주사위 굴리기 (정답률 40%) (0) | 2020.01.14 |
---|---|
[삼성SW테스트] 백준 14500번 - 테트로미노 (정답률 33%) (0) | 2020.01.13 |
[삼성SW테스트] 백준 14502번 - 연구소 (정답률 54%) (0) | 2020.01.13 |
[삼성SW테스트] 백준 14503번 - 로봇 청소기 (정답률 50%) (0) | 2020.01.12 |
[삼성SW테스트] 백준 14888번 - 연산자 끼워넣기 (정답률 47%) (0) | 2020.01.11 |
Comments