반응형
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
- 총정리
- connected_component
- Pair
- 13305
- 구현
- Heap
- c++
- 자료구조
- STL
- Biconnected_Component
- singly Linked List
- Algorithm
- data_structure
- sort
- 문법
- Critical_Path_Analysis
- function_template
- template
- '0'
- 5397
- qsort
- deletion
- 알고리즘
- 예제
- Articulation_Point
- red-black tree
- sstream
- 백준
- class_template
- list
Archives
- Today
- Total
- Today
- Total
- 방명록
목록ㅊ++ (1)
어제의 나보다 성장한 오늘의 나
[c++][Greedy] 백준 13305번 문제 풀이
알고리즘 도시를 하나 씩 옮겨가면서 첫 번째 도시~ 현재 도시 중 가장 주유 값이 적은 것을 선택한다. 현재도시~다음 도시 까지의 도로의 길이를 구한다. (첫 번째 도시 ~ 현재도시 중 가장 적은 주유값) * (현재도시~다음 도시 까지의 도로의 길이) 를 total에 더한다. 이 과정을 첫 번째 도시 부터 마지막 도시까지 적용하면 쉽게 구할 수 있다. Coding #include #include using namespace std; int main(int args ,char** argv){ int N ; long long int temp; cin >> N; vector street; vector cost_gas; for(int i = 0 ; i > temp; street..
c++/백준 문제 풀이
2022. 2. 19. 13:52