일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- itertools
- 11054
- 코테
- 1260
- 나머지
- expo
- 9095
- Android
- 11053
- 코틀린
- 뒤로가기
- Combination
- 파이썬
- 11기
- 순열
- 백준
- 홈화면
- 11057
- 매일11시
- 6603
- lcm
- 앱
- 1182
- Python
- Kotlin
- 최소공배수
- 안드로이드
- 괄호
- permutation
- LCS
- Today
- Total
목록Python (30)
황소개발자
에레토스테네스의 체 구현해도 시간초과나서 최적화하는데 꽤 걸렷네요 import sys input = sys.stdin.readline num_list = [] while True: n = int(input().strip()) if n == 0: break num_list.append(n) max_num = max(num_list) sosu = [1 for i in range(max_num + 1)] sosu[1] = 0 only_sosu = [] i = 2 while i
import sys import itertools input = sys.stdin.readline def gcd(a, b): return gcd(b, a % b) if b else a t = int(input()) for i in range(t): num_list = list(map(int, input().split())) num_list = num_list[1:] ans = 0 for a, b in itertools.combinations(num_list, 2): ans += gcd(a, b) print(ans) gcd의 설명은 아래 글에! 백준 2609 파이썬 python : 최대공약수와 최소공배수 @@황소처럼 우직하게@@ [유클리드 호제법 알고리즘][gcd][lcm] 이걸 아직도 파악하지 못하고 있..
이걸 아직도 파악하지 못하고 있었다니.. 반성한다. 유클리드 호제법은 기원전 300년에 나온 첫번째 알고리즘으로 유명하다. a 를 b로 나눈 나머지를 r 이라고 했을 때, a와 b의 최대공약수는 b와 r의 최대공약수이다. 다시말해서, a와 b의 최대공약수는 b와 a%b의 최대공약수이다. 재귀가 느껴지는가? 반복이 느껴지는가? a%b 값이 0이 되었을 때, b 값이 최대공약수이다. 최소공배수는 어떻게 구할까? 최대 공약수를 G라고 했을 때, a = G * x b= G * y 이다. G가 최대공약수 그 자체이기에, x, y는 서로소이다. 하튼, a * b = G * G * x * y 이다. 그럼 최소공배수는 a * b / G 이다. 놀랍지 않은가? gcd = greatest common divisior : ..
import sys input = sys.stdin.readline n = int(input()) mat = [] for i in range(n): mat.append(list(map(int, input().strip().split()))) import itertools gab = 999999999 team = [i for i in range(n)] tt = list(itertools.combinations(team, n // 2)) for team1 in tt: team2 = [x for x in team if x not in team1] team1_score = 0 team2_score = 0 for x, y in list(itertools.combinations(team1, 2)): team1_sc..
import sys input = sys.stdin.readline t = int(input()) for i in range(t): n, m = map(int, input().split()) info = list(map(int, input().strip().split())) info = [[x, idx] for idx, x in enumerate(info)] ans = 0 while True: if info[0][0] == max(info)[0]: ans += 1 if info[0][1] == m: print(ans) break else: info = info[1:] else: info = info[1:] + info[:1] 옆에 인덱스 붙여서 이중리스트로 풀었다
import sys input = sys.stdin.readline n, s = map(int, input().split()) num_list = list(map(int, input().split())) ans = 0 def subSet(idx, total): global ans if idx >= n: return total += num_list[idx] if total == s: ans += 1 subSet(idx + 1, total - num_list[idx]) subSet(idx + 1, total) subSet(0, 0) print(ans) jaimemin 님의 c++ 풀이를 참고하였다. 재귀로 풀었다. Solution 각 원소는 그 원소가 포함되었는지 안되었는지로 나뉘어진다. 길이가 0인 것이 ..
import sys input = sys.stdin.readline brackets = input().strip() def check_brakcets(ss): stack = [] for s in ss: if s == '(' or s == '[': stack.append(s) elif s == ')' and stack: if stack[-1] == '(': stack = stack[:-1] else: stack.append(s) elif s == ']' and stack: if stack[-1] == '[': stack = stack[:-1] else: stack.append(s) else: stack.append(s) if stack: return False else: return True def sol..
import sys input = sys.stdin.readline mat = [] n, m, y, x, k = map(int, input().split()) for i in range(n): mat.append(list(map(int, input().split()))) orders = list(map(int, input().split())) class Dice: def __init__(self): self.west = 0 self.north = 0 self.east = 0 self.south = 0 self.up = 0 self.down = 0 def go_south(self): self.north, self.up, self.south, self.down = self.down, self.north, s..