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 |
Tags
- 코딩테스트
- English
- 쉬운 알고리즘 문제
- 원서읽자
- 백준
- 직무면접
- readingbook
- swexpertacademy
- englishbook
- SQL
- 원서읽기
- the midnight library
- 프로그래머스
- 삼성
- 코테
- PyQt
- 알고리즘
- BFS
- dfs
- MySQL
- 알고리즘 문제
- sw expert
- 완전탐색
- STUDYENGLISH
- 코테 준비
- D4
- 코테 대비
- nightroutine
- sw expert academy
- 원서
Archives
- Today
- Total
목록1197 (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