计算几何 — 叉积求多边形面积 题目 poj1654 Areas Areas 这个是我自己开的,进不去的 然后就是一点一点的算了, #include <iostream> using namespace std; // 1 西南 2 南 3 东南 4 向西 5 停止 6 向东 7 西北 8 向北 9 东北 int dx[10] = {0 , -1 , 0 , 1 , -1 , 0 , 1 ,-1 , 0 ,1} ; int dy[10] = {0 , -1 ,-1 ,-1 , 0 , 0 , 0 , 1 , 1 ,1} ; typedef long long ll ; in...