일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- 연관관계
- 완전탐색
- unity
- 그리디 알고리즘
- 우선순위큐
- pypy3
- 인프런
- mvc
- 백준
- 브루투포스
- 프로그래머스
- 누적합
- BFS
- Java
- LCM
- appendleft
- c#
- DP
- popleft
- 파이썬
- 합 구하기
- 소수판별
- JPA
- deque
- spring
- Python
- 1일1솔
- 소수찾기
- python3
- C#강의
Archives
- Today
- Total
목록2422 (1)
jae_coding

문제 문제 링크 코드 import sys from itertools import combinations input = sys.stdin.readline n, m = map(int, input().split()) board = list([0] * n for _ in range(n)) result = 0 for i in range(m): a, b = map(int, input().split()) board[a-1][b-1] = 1 board[b-1][a-1] = 1 for c in combinations(range(n), 3): x, y, z = c if board[x][y] != 1 and board[x][z] != 1 and board[y][z] != 1: result += 1 print(result)
알고리즘 문제/완전탐색(Brute Force)
2022. 7. 25. 19:34