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 | 31 |
Tags
- 코테 대비
- 알고리즘 문제
- 알고리즘
- englishbook
- 원서
- sw expert academy
- BFS
- 프로그래머스
- 코테
- 코테 준비
- 코딩테스트
- PyQt
- nightroutine
- 완전탐색
- MySQL
- readingbook
- STUDYENGLISH
- SQL
- sw expert
- English
- 직무면접
- 쉬운 알고리즘 문제
- 원서읽기
- 삼성
- 백준
- 원서읽자
- the midnight library
- D4
- swexpertacademy
- dfs
Archives
- Today
- Total
목록최소 신장크리 (1)
시나브로
1197. 최소 스패닝 트리
나는 크루스칼 알고리즘으로 mst를 구현하였다. 하지만, 이 소스에서는 개선점이 있다. union-find 알고리즘을 사용해서 좀더 효율적으로 구현이 가능할 것 같다. #include #include using namespace std; #define MAX_NUM 100010 int input[MAX_NUM][3]; int num; int n = 0; int m = 0; void swap(int i ,int j) { int temp[3] = { input[i][0],input[i][1], input[i][2] }; input[i][0] = input[j][0]; input[i][1] = input[j][1]; input[i][2] = input[j][2]; input[j][0] = temp[0]; in..
알고리즘/백준
2020. 1. 17. 11:50