摘要: /*最大凸包*/#include <stdio.h> #include <string.h> #include <algorithm> using namespace std; const int maxsz = 55; int m, dp[maxsz][maxsz], ans; struct Point { int x, y; Point ( int xx = 0, int yy = 0 ) : 阅读全文
posted @ 2019-08-15 20:51 czwccc 阅读(138) 评论(0) 推荐(0) 编辑