Problem Solving/Baekjoon Online Judge(13)
-
[BOJ/백준] 1874번 스택 수열 | 파이썬
문제 풀이 import sys n = int(input()) target = [int(sys.stdin.readline().strip()) for _ in range(n)] stack = [] res = [] for i in range(1, n+1): stack.append(i) res.append('+') while stack and target: if stack[-1] == target[0]: stack.pop() res.append('-') del target[0] else: break if target: print('NO') else: for i in range(len(res)): print(res[i]) 1부터 n까지의 수로 입력된 수열을 만드는 문제. sys.stdin.readline().st..
2021.08.26 -
[BOJ/백준] 10828번 스택 | 파이썬 (🌠sys.stdin.readline으로 시간 초과 해결)
문제 풀이 import sys n = int(sys.stdin.readline()) stack = [] for i in range(n): cmd = sys.stdin.readline().strip() if 'push' in cmd: stack.append(cmd[5:]) elif cmd == 'pop': if len(stack) == 0: print(-1) else: print(stack.pop()) elif cmd == 'size': print(len(stack)) elif cmd == 'empty': if len(stack) == 0: print(1) else: print(0) elif cmd == 'top': if len(stack) == 0: print(-1) else: print(stack[-1..
2021.08.24 -
[BOJ/백준] 1697번 숨바꼭질 | BFS | 파이썬
문제 풀이 from collections import deque def bfs(start, end): queue = deque() queue.append(start) while queue: x = queue.popleft() if x == end: return visited[x] for nx in (x-1, x+1, x*2): if 0
2021.08.11 -
[BOJ/백준] 7576번 토마토 | BFS | 파이썬
문제 풀이 from collections import deque def bfs(queue, box): global days dx, dy = [-1, 1, 0, 0], [0, 0, 1, -1] while queue: x, y = queue.popleft() for i in range(4): nx = x + dx[i] ny = y + dy[i] if 0
2021.08.09 -
[BOJ/백준] 10809번 알파벳 찾기 | 문자열
문제 알파벳 소문자로만 이루어진 단어 S가 주어진다. 각각의 알파벳에 대해서, 단어에 포함되어 있는 경우에는 처음 등장하는 위치를, 포함되어 있지 않은 경우에는 -1을 출력하는 프로그램을 작성하시오. 입력 첫째 줄에 단어 S가 주어진다. 단어의 길이는 100을 넘지 않으며, 알파벳 소문자로만 이루어져 있다. 출력 각각의 알파벳에 대해서, a가 처음 등장하는 위치, b가 처음 등장하는 위치, ... z가 처음 등장하는 위치를 공백으로 구분해서 출력한다. 만약, 어떤 알파벳이 단어에 포함되어 있지 않다면 -1을 출력한다. 단어의 첫 번째 글자는 0번째 위치이고, 두 번째 글자는 1번째 위치이다. 문제 풀이 s = input() a = list(range(97,123)) for i in range(len(a)..
2021.07.08