摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1466N条直线的交点方案数 = c 条直线交叉的交点数与(N-c)条平行线 + c 条直线本身的交点方案 = (N - c) * c + c 条直线之间的交点数。 1 #include 2 #include 3... 阅读全文
摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=1494dp[i][j]为第i段路,储存了j个能量。 1 #include 2 #include 3 #include 4 #define ll int 5 using namespace std; 6 con... 阅读全文