전체 글(44)
-
[acmicpc] 11650 좌표 정렬하기 정답 코드
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 #include #include typedef struct _Point { int ..
2020.04.12 -
[C언어] 병합정렬 (Merge Sort) 소스 코드
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 #include #include #define SIZE 10 void merge(int arr[], int start1, int end1, int start2, int end2) { // 앞 배열의 인덱스와 뒤 배열의 인덱스 int i = start1, j = start2; // 임시 배열 (정렬을 위한..
2020.04.12 -
[C언어] 퀵정렬 (Quick Sort) 소스 코드
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556#include #define SIZE 10 // 양쪽 값 변경 inline void swap(int *a, int *b){ int temp = *a; *a = *b; *b = temp;} // 퀵소트 함수 void quickSort(int arr[], int start, int end){ // 종료 조건 if(start >= end) return; // 피벗 (왼쪽 고정) int nPivot = arr[start]; int i = start, j = end; while(i
2020.04.12 -
[acmicpc] 백준 1018 체스판 다시 칠하기 정답 코드
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 #include #include #define MIN(a,b) ((a > b) ? b : a) char g_arrBoard[52][52]; unsigned int fnGetMinFill(unsigned int nX, unsigned int nY) { unsigned int nMinCount = INT_MAX; unsigned int nTes..
2020.04.12 -
[acmicpc] 백준 7568 덩치 C언어 정답 코드
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 46 47 48 49 50 51 52 53 54 55 56 57 #include #include typedef struct _Person { public: unsigned int nWeight; unsigned int nHeight; unsigned int nRank; bool operator
2020.04.12 -
유클리드 기하학 원, 택시 기하학 원 넓이
유클리드 기하학의 공준 ... 어떤 한 점을 중심으로 하고 이에 대한 거리(반지름)로 하나의 원을 그릴 수 있다. ... 출처 : https://ko.wikipedia.org/wiki/%EC%9C%A0%ED%81%B4%EB%A6%AC%EB%93%9C_%EA%B8%B0%ED%95%98%ED%95%99 택시 기하학의 성질 ... 한 정점에서 일정한 거리에 있는 점의 집합이라는 원의 정의를 택시평면에 적용하면 |x|+|y|=r을 만족시키는 점 (x,y)의 집합이 된다. 이 집합은 (유클리드 거리로 정의된) 원이 아닌 두 대각선의 길이가 같은 다이아몬드 모양의 정사각형을 만든다. ... 출처 : https://ko.wikipedia.org/wiki/%EB%B9%84%EC%9C%A0%ED%81%B4%EB%A6%A..
2020.04.11