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
- BFS
- MST
- upper_bound
- yolo
- 성화봉송주자
- multiset
- DP
- 성화봉송
- 비트마스크
- 영어회화 100일의 기적
- 다음 지도 api
- 백트레킹
- 삼성 코딩테스트
- boj
- 이분탐색
- 위상정렬
- BOJ 2098
- 평창동계올림픽
- 다음 API
- lower_bound
- 창훈쓰다
- 생활코딩
- 그리디 알고리즘
- 캘리그라피
- 다이나믹 프로그래밍
- 외판원 순회
- 안드로이드 스튜디오
- Segment Tree
- 인간이 그리는 무늬
- 언어의 온도
Archives
- Today
- Total
Hoon222y
[BOJ 14501] 퇴사 본문
https://www.acmicpc.net/problem/14501
예전에 모 기업 문제라고 올라왔던 문제이다. 그냥 간단한 DP인데 멍청하게도 갱신되는 구간을 전부다 확인하지 않는 삽질을 많이 했다. 점화식은 30~36을 참고하면 될것이다.
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 | #include <iostream> #include <cstdio> #include <vector> #include <cmath> #include <algorithm> #include <cstring> #include <set> #include <queue> #include <stack> #define MAX_N 10000 typedef long long ll; using namespace std; int n,arr[3][111],dp[111]; int main(){ ios::sync_with_stdio(false); cin.tie(0); cin >> n; for(int i=1;i<=n;i++){ int a,b; cin >>a >> b; arr[1][i] = a; arr[2][i] = b; dp[i] = b; } for(int i=1;i<=n;i++){ int t = i+arr[1][i]; for(int j=t;j<=n;j++){ dp[j] = max(dp[j] , dp[i]+arr[2][j]); //처음 시작되는 그 부분부터 n까지 다 갱신 } } int ans = 0; for(int i=1;i<=n;i++){ if(i+arr[1][i] <=n+1){ ans = max(ans , dp[i]); } } cout <<ans <<endl; return 0; } | cs |
'코딩 > BOJ & 알고스팟' 카테고리의 다른 글
[BOJ 5557] 1학년 (0) | 2017.10.07 |
---|---|
[BOJ 1126] 같은 탑 (0) | 2017.10.07 |
[BOJ 4196] 도미노 (0) | 2017.10.06 |
[BOJ 2150] (SCC) Strongly Connected Component (0) | 2017.10.06 |
[BOJ 1459] 걷기 (0) | 2017.10.05 |
Comments