摘要:
http://acm.hdu.edu.cn/showproblem.php?pid=4135容斥原理View Code 1 #include <iostream> 2 #include <cstdio> 3 #include <cmath> 4 using namespace std; 5 int p[100],cnt; 6 long long a,b,aa,bb; 7 void pt(int n,int *p,int &c) 8 { 9 c=0;10 int i,m=(int)sqrt(n);11 for (i=2;i<=m;i++) if
阅读全文