2014年12月11日

hdu5128(2014广州区域赛B) 矩形相交相关

摘要: 题意就是选无相交点的两个矩形,使两矩形面积和最大==我用hdu2056的矩形相交面积做,还是比较好写的,2056的代码: 1 #include 2 #include 3 #include 4 using namespace std; 5 int main() 6 { 7 double x1,... 阅读全文

posted @ 2014-12-11 18:05 xiao_xin 阅读(114) 评论(0) 推荐(0) 编辑

hdu2837(2009多校第三场) a^b%p=a^(b%phi(p)+phi(p))%p b>=phi(p)

摘要: 公式如上,dfs函数思考清楚==另外欧拉函数以前写的可以换了 1 #include 2 #include 3 #include 4 #define LL long long 5 LL phi(LL x) 6 { 7 LL ans=x,i; 8 for (i=2;i*i=m) return a... 阅读全文

posted @ 2014-12-11 02:06 xiao_xin 阅读(246) 评论(0) 推荐(0) 编辑

导航