[Coding Test]/[백준]
[백준] 11279 파이썬(python) : 최대 힙
https://www.acmicpc.net/problem/11279 11279번: 최대 힙 첫째 줄에 연산의 개수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 N개의 줄에는 연산에 대한 정보를 나타내는 정수 x가 주어진다. 만약 x가 자연수라면 배열에 x라는 값을 넣는(추가하는) 연산이고, x가 www.acmicpc.net import sys, heapq n = int(sys.stdin.readline()) heap = [] for _ in range(n): x = int(sys.stdin.readline()) if not heap and x == 0: #1 print(0) elif heap and x == 0: #2 print(heapq.heappop(heap)* -1) elif x != 0: ..
[백준] 11478 파이썬(python) : 서로 다른 부분 문자열의 개수 - (★)
11478번 : 서로 다른 부분 문자열의 개수 import sys string = sys.stdin.readline().rstrip() res = set() #1 for i in range(len(string)): for j in range(i, len(string)): #2 res.add(string[i:j+1]) #3 print(len(res)) #1 : 서로 중복되는 부분을 자동으로 제거해 주기 위해 .set() 생성자 이용 #2 : 1자리 부터 string의 길이까지 하나하나 자르기 위해 range(i, len(string))로 설정 #3 : 인덱스 슬라이싱이 [a:b]이면 a부터 b-1까지인것을 생각해서 j+1로 설정. 처음 i = 0, j = 0일때 [0:0]이 되서 한자리 문자가 잘려나오지 ..
[백준] 1269 파이썬(python) : 대칭 차집합
https://www.acmicpc.net/problem/1269 1269번: 대칭 차집합 첫째 줄에 집합 A의 원소의 개수와 집합 B의 원소의 개수가 빈 칸을 사이에 두고 주어진다. 둘째 줄에는 집합 A의 모든 원소가, 셋째 줄에는 집합 B의 모든 원소가 빈 칸을 사이에 두고 각각 주어 www.acmicpc.net n, m = map(int, input().split()) a = set(map(int, input().split())) b = set(map(int, input().split())) c = a ^ b print(len(c)) 대칭 차집합 사용법은 https://hgk5722.tistory.com/59에 있다. [Python] 파이썬 .set() 생성자 사용법 1. set은 딕셔너리와 같이 ..
[백준] 1764 파이썬(python) : 듣보잡 - (★)
https://www.acmicpc.net/problem/1764 1764번: 듣보잡 첫째 줄에 듣도 못한 사람의 수 N, 보도 못한 사람의 수 M이 주어진다. 이어서 둘째 줄부터 N개의 줄에 걸쳐 듣도 못한 사람의 이름과, N+2째 줄부터 보도 못한 사람의 이름이 순서대로 주어진다. www.acmicpc.net n, m = map(int, input().split()) map = {} for i in range(n+m): name = input() if name not in map: #1 map[name] = 1 else: map[name] += 1 answer = [] for a, b in map.items(): #2 if b == 2: answer.append(a) print(len(answer))..
[백준] 1620 파이썬(python) : 나는야 포켓몬 마스터 이다솜
https://www.acmicpc.net/problem/1620 1620번: 나는야 포켓몬 마스터 이다솜 첫째 줄에는 도감에 수록되어 있는 포켓몬의 개수 N이랑 내가 맞춰야 하는 문제의 개수 M이 주어져. N과 M은 1보다 크거나 같고, 100,000보다 작거나 같은 자연수인데, 자연수가 뭔지는 알지? 모르면 www.acmicpc.net import sys n, m = map(int, sys.stdin.readline().split()) dict_name, dict_number = {}, {} #1 for number in range(1, n+1): name = sys.stdin.readline().rstrip() dict_name[name] = number dict_number[number] = na..
[백준] 14425 파이썬(python) : 문자열 집합
https://www.acmicpc.net/problem/14425 14425번: 문자열 집합 첫째 줄에 문자열의 개수 N과 M (1 ≤ N ≤ 10,000, 1 ≤ M ≤ 10,000)이 주어진다. 다음 N개의 줄에는 집합 S에 포함되어 있는 문자열들이 주어진다. 다음 M개의 줄에는 검사해야 하는 문자열들이 주어 www.acmicpc.net n, m = map(int, input().split()) map = {} result = 0 for i in range(n): s = input() if not s in map: map[s] = True # 1 for i in range(m): gumsa = input() if gumsa in map.keys(): # 2 result += 1 print(resul..