摘要:
Automatic Control Machine 题解:\(bitset\)应用二进制枚举 AC_Code: 1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 #include <bitset> 5 #include <s 阅读全文
该文被密码保护。 阅读全文
摘要:
Largest Triangle 题意:在二维坐标中给出\(n\)个点,在这些点中挑\(3\)个点能组成的面积最大的三角形的面积 AC_Code: 1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 #include <str 阅读全文
摘要:
Beauty Contest 题意:求凸包上最大点对的距离 AC_Code: 1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 #include <string> 5 #include <algorithm> 6 #incl 阅读全文