11286번 - 절대값 힙
나는 이 문제를 우선 순위큐가 아닌 배열을 통해서 풀어보았다.
최대힙, 최소힙과 비슷한 방식이었지만, 비어있는 큐가 0일 때를 생각해줘야 했고, 크다 작다가 아닌
같은 값일 때도 나눠줘야 했기 때문에 조건이 많이 발생하였다.
그리고 pop 할때 for문에서 i 값 증가량을 명시해놓지 않아서 처음에 많이 틀렸다.
pop 에서 마지막 l !=0 && r!=0 부분에서 많이 헷갈렸었다.. 배열로 풀기는 너무 조건문이 많이 생기는 것 같다..
<정답 코드>
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 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 | #include<iostream> using namespace std; int N; int heap[100001]; int last = 0; void push(int n) { heap[++last] = n; for (int i = last; i > 1; i /= 2) { int p = heap[i/2]; int n = heap[i]; if(abs(n)<abs(p)) { swap(heap[i], heap[i/2]); } else { if (abs(n) == abs(p)) { if (n < p) { swap(heap[i], heap[i/2]); } else { break; } } else { break; } } } } void pop() { printf("%d\n", heap[1]); if (last == 0) { return; } swap(heap[last], heap[1]); heap[last--] = 0; for (int i = 1; i * 2 <= last;) { int p = heap[i]; int l = heap[i * 2]; int r = heap[i * 2 + 1]; if (abs(p) < abs(l) && abs(p) < abs(r)) { break; } else { if (l == 0 && r == 0) { break; } else if (l == 0 && r != 0) { if (abs(r) < abs(p)) { swap(heap[i*2+1], heap[i]); i = i * 2 + 1; } else { if (abs(r) == abs(p)) { if (r < p) { swap(heap[i*2+1], heap[i]); i = i * 2 + 1; } else { break; } } else { break; } } } else if (l != 0 && r == 0) { if (abs(l) < abs(p)) { swap(heap[i*2], heap[i]); i = i * 2; } else { if (abs(l) == abs(p)) { if (l < p) { swap(heap[i*2], heap[i]); i = i * 2; } else { break; } } else { break; } } } else if (l != 0 && r != 0) { if (abs(l) < abs(r)) { if (abs(l) < abs(p)) { swap(heap[i*2], heap[i]); i = i * 2; } else { if (abs(l) == abs(p)) { if (l < p) { swap(heap[i*2], heap[i]); i = i * 2; } else { break; } } else { break; } } } else if(abs(l)>abs(r)) { if (abs(r) < abs(p)) { swap(heap[i*2+1], heap[i]); i = i * 2 + 1; } else { if (abs(r) == abs(p)) { if (r < p) { swap(heap[i*2+1], heap[i]); i = i * 2 + 1; } else { break; } } else { break; } } } else { if (l < r) { if (abs(l) < abs(p)) { swap(heap[i], heap[i * 2]); i = i * 2; } else { if (abs(l) == abs(p)) { if (l < p) { swap(heap[i], heap[i * 2]); i = i * 2; } else { break; } } else { break; } } } else { if (abs(r) < abs(p)) { swap(heap[i], heap[i * 2+1]); i = i * 2+1; } else { if (abs(r) == abs(p)) { if (r < p) { swap(heap[i], heap[i * 2+1]); i = i * 2+1; } else { break; } } else { break; } } } } } } } } int main() { cin >> N; while (N--) { int op; cin >> op; if (op == 0) { pop(); } else { push(op); } } return 0; } | cs |
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
1764번 (0) | 2017.12.21 |
---|---|
7785번 (0) | 2017.12.21 |
1927번(우선순위 큐 다시풀기) (0) | 2017.12.20 |
11279번(우선순위 큐 다시풀기) (0) | 2017.12.20 |
4195번 (0) | 2017.12.20 |