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
- HTTP
- CoordinatorLayout
- sqlite
- 알고리즘
- View
- onLayout
- CollapsingToolbarLayout
- hilt
- LiveData
- onMeasure
- activity
- room
- Algorithm
- DataBinding
- CustomView
- Behavior
- Navigation
- Android
- kotlin
- 알림
- 백준
- Coroutine
- lifecycle
- BOJ
- recyclerview
- ViewModel
- AppBarLayout
- notification
- 코틀린
- 안드로이드
Archives
- Today
- Total
목록dp (1)
개발일지
Algorithm in A..Z - 백준 4013 ATM
https://www.acmicpc.net/problem/4013 4013번: ATM 첫째 줄에 교차로의 수와 도로의 수를 나타내는 2개의 정수 N과 M(N, M ≤ 500,000)이 차례로 주어진다. 교차로는 1부터 N까지 번호로 표시된다. 그 다음 M개의 줄에는 각 줄마다 각 도로의 시작 교차 www.acmicpc.net 접근 1. SCC를 만들고 각 Component를 새로운 하나의 노드로 생각하고 Component의 구성 요소로 SCC Component간 연결할 수 있는 간선을 구하여 새로운 Graph를 구한다. 2. DP를 사용하여 최대로 인출할 수 있는 금액을 구한다. 코드 #include #include #include #include using namespace std; constexpr ..
Problem Solving
2021. 7. 9. 16:42