일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 11057
- 순열
- itertools
- permutation
- 11054
- 11기
- 9095
- 6603
- 괄호
- 홈화면
- 1182
- 코테
- 매일11시
- lcm
- Python
- 1260
- LCS
- 11053
- expo
- Combination
- 파이썬
- 코틀린
- 나머지
- 최소공배수
- 앱
- 안드로이드
- Kotlin
- 뒤로가기
- Android
- 백준
- Today
- Total
목록백준 (48)
황소개발자
import sys input = sys.stdin.readline N = int(input()) tester_num = list(map(int, input().split())) a, b = map(int, input().split()) ans = N for num in tester_num: num -= a if num < 0: continue ans += num // b if num % b == 0 else num // b + 1 print(ans) 삼성역량테스트 기출문제라는데, 거의 손풀기문제군요. 근데 정답률이 25%(백준에서) 우선 각 반에 감독관 1명씩 계산하고 남는 학생들에 대하여 부감독관 넣어주는거죠. 나누어 떨어지면 그 수만큼 넣고, 안나누어 떨어지면 한 명 더 넣어주고.
혹시나 시간초과가 나면 어쩔까 했는데 시간복잡도 n^2 으로 풀어도 괜찮다. import sys r = sys.stdin.readline people = [] n = int(r()) for i in range(n): x, y = map(int, r().split()) people.append([x, y]) for i in range(n): total = 1 for j in range(n): if i == j: continue if people[j][0] > people[i][0] and people[j][1] > people[i][1]: total += 1 print(total, end=" ") 이런 단순한 문제를 보면 시간초과 공포증이 있다;; TIME LIMIT POBIA
간단한 문제다 브루트포스 문제가 그냥 생각흐름대로 코딩하기 딱 좋다. n = int(input()) for i in range(n + 1): i_s = str(i) total = i for j in i_s: total += int(j) if total == n: break print(i if i != n else 0)
다익스트라는 Greedy 와 BFS 를 섞은 느낌이다 BFS에서 대신 q를 쓸 때, min heap q를 사용한다. 그래야 다음으로 가장 짧은 노드를 빠르게 찾을 수 있으니. import sys import heapq inpu = sys.stdin.readline INF = 999999999 def dijkstra(v, start, g): dist = [INF] * (V + 1) dist[start] = 0 q = [] heapq.heappush(q, [0, start]) while q: cost, loc = heapq.heappop(q) for l, c in g[loc]: c += cost if c < dist[l]: dist[l] = c heapq.heappush(q, [c, l]) return di..
역시 갓파이썬이죠 파이썬엔 itertools 란 모듈이 있습니다. 모르시는분 이제 알고 가세요. 화끈합니다. import itertools import sys def sol(): while True: s = sys.stdin.readline() if s.strip() == "0": return lst = list(map(int, s.split())) lst = lst[1:] lst = list(map(str, lst)) combi = list(map(' '.join, list(itertools.combinations(lst, 6)))) for numbers in combi: print(numbers) print() sol() 우선 윗 코드는 정답코드입니다. 그리고 permutations, combinat..
개떡같은 문제 import sys sys.setrecursionlimit(10000000) n, m = map(int, sys.stdin.readline().split()) adj = [[] for i in range(n + 1)] visited = [False] * (n + 1) for i in range(m): a, b = map(int, sys.stdin.readline().split()) adj[a].append(b) adj[b].append(a) def fake_dfs(v): visited[v] = True for i in adj[v]: if not(visited[i]): fake_dfs(i) count = 0 for i in range(1, n + 1): if not(visited[i]): c..
이 글에서는 dfs와 bfs의 개념을 설명하지 않습니다. dfs bfs 공부하시구 이 글봐주시면 '최적화' 라는 위대함에 알게됩니다. 오랜만에 복습겸 이 문제를 접하게되었는데, 계속 시간초과가 나는겁니다.. n, m, v = list(map(int, input().split())) adj = [[0 for i in range(n + 1)] for j in range(n + 1)] for i in range(m): a, b = map(int, input().split()) adj[a][b] = 1 adj[b][a] = 1 def dfs(v, hist, adj): hist.append(v) for i in range(1, n + 1): if i not in hist and adj[v][i]: hist = d..
https://hjp845.tistory.com/30 백준 1958 파이썬 python : LCS 3 @@황소처럼 우직하게@@ 처음엔 아래 코드와 같이, a b c 의 lcs 는 (a b 의 lcs) 와 (c) 의 lcs 이겠지 생각했으나 틀렸다. def lcs(a, b): dp = [[0 for i in range(len(a) + 1)] for j in range(len(b) + 1)] for i in range(1, len(b).. hjp845.tistory.com 이전 글에서 길이를 찾아내는 문제를 풀어보았다. 이번에는 부분문자열까지 찾아내는 솔루션을 제시한다. 이런 문제가 사이트에 있을진 모르겠지만, 충분히 나올 수 있는 문제다. lst = [input() for i in range(3)] dp ..