Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- onMeasure
- DataBinding
- BOJ
- ViewModel
- View
- AppBarLayout
- notification
- CustomView
- Behavior
- 알고리즘
- Android
- CollapsingToolbarLayout
- recyclerview
- sqlite
- Algorithm
- kotlin
- 코틀린
- onLayout
- room
- 알림
- activity
- hilt
- 백준
- Navigation
- HTTP
- lifecycle
- LiveData
- Coroutine
- CoordinatorLayout
- 안드로이드
Archives
- Today
- Total
개발일지
Algorithm in A..Z - Inclusion–exclusion principle (포함 배제의 원리) 본문
Algorithm (알고리즘)
Algorithm in A..Z - Inclusion–exclusion principle (포함 배제의 원리)
강태종 2021. 3. 5. 19:29개념
유한 집합의 합집합의 원소의 개수를 세는 기법이다.
작동원리
즉 겹치는 부분이 홀수면 더하고, 겹치는 부분이 짝수이면 뺀다.
시간복잡도
집합의 갯수가 N일 때
O(2^N)
문제
코드
#include <bits/stdc++.h>
using namespace std;
using Int = int;
using Long = long long;
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
Int n;
Long m;
cin >> n >> m;
vector<Int> ve(n);
for (auto &i : ve) {
cin >> i;
}
Long ans = 0;
for (Int bit = 1;bit < (1 << n);++bit) {
Int count = 0;
Long value = 1L;
for (Int p = 0;p < n;++p) {
if (bit & (1 << p)) {
count++;
value *= ve[p];
}
}
if (count % 2) {
ans += m / value;
} else {
ans -= m / value;
}
}
cout << ans << "\n";
}
'Algorithm (알고리즘)' 카테고리의 다른 글
Algorithm in A..Z - Meet In The Middle (0) | 2021.06.10 |
---|---|
Algorithm in A..Z - 선분 교차 판별 (0) | 2021.04.14 |
Algorithm in A..Z - Euler's phi (오일러 피 함수) (0) | 2021.03.05 |
Algorithm in A..Z - Trie (Prefix Tree) (0) | 2021.03.04 |
Algorithm in A..Z - Lazy Segment Tree (0) | 2021.03.04 |
Comments