사물인식 최소 면적 산출 프로그램 반례 부탁합니다.
테케는 통과, 추가 문제에서 오답이 많네요. #include
#include
#include
#include
#include #include using namespace std; struct points { int x, y, k; }; vector p1, p2; int n, m, a, b, c, cnt, s, e; int color[30]; int ans = 1000000000; bool compx(const points &a, const points &b) { if (a.x < b.x) return true; else if (a.x == b.x) { if (a.y < b.y) return true; else if (a.y == b.y) { if (a.k < b.k) return true; } } return false; } bool compy(const points &a, const points &b) { if (a.y < b.y) return true; els...
- 연습문제 톡
- 날짜
- 2021-10-14 14:23:01
- 작성자
- endland
- 댓글
- 1
#[hsat_2회_정기_코딩_인증평가_기출]_사물인식_최소_면적_산출_프로그램
#cpp