51Nod 1248 2 3 5 7 的倍数 容斥
Posted #WoNderlAnd#
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51Nod 1248 2 3 5 7 的倍数 容斥相关的知识,希望对你有一定的参考价值。
传送门:https://www.51nod.com/onlineJudge/questionCode.html#!problemId=1284
容斥原理:从反面考虑,n-(2的倍数||3的倍数||5的倍数||7的倍数)
也可表示为:设S为有限集,,则
#include<iostream> #include<algorithm> #include<vector> #include<string.h> #include<map> using namespace std; typedef long long ll; const int MAX = 5e4 + 5; ll n, t; int main() { cin >> n; ll a, b, c, d; a = n / 2 + n / 3 + n / 5 + n / 7; b = n / 6 + n / 10 + n / 14 + n / 15 + n / 21 + n / 35; c = n / 30 + n / 42 + n / 105+n/70; d = n / 210; cout << n - a + b - c + d << endl; return 0; }
以上是关于51Nod 1248 2 3 5 7 的倍数 容斥的主要内容,如果未能解决你的问题,请参考以下文章