일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Prompt Tuning with Rules for Text Classification
- Chatbot
- KLUE
- BELU
- KLUE-RE
- GPT-1
- Transformer
- multi-head attention
- Transformers
- BLEU Score
- boj
- MT-DNN
- NLP
- layer normalization
- ai-tech
- 취업
- BoostCamp
- Conversation System
- FSML
- pytorch
- Dialogue System
- beam search
- bert
- 백준
- huggingface
- Relation Extraction
- text classification
- fine-tuning
- Eliza
- scaled dot-product attention
Archives
- Today
- Total
dukim's blog
[BOJ-18428] 감시 피하기 본문
문제
내 풀이
- 백준 연구소 문제와 비슷
- 벽을 설치하는 모든 경우의 수를 찾은 뒤(DFS, BFS, 또는 파이썬 combinations),
- 각 경우마다 학생이 걸리는지 여부를 체크해 걸리지 않는 경우 'YES'를 출력
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | n = int(input().strip()) hall = [] case_list = [] teacher_list = [] for r in range(n): hall.append(list(input().split())) tmp_line = hall[-1] for c in range(n): if tmp_line[c] == 'X': case_list.append((r, c)) if tmp_line[c] == 'T': teacher_list.append((r, c)) from itertools import combinations from copy import deepcopy case_list = list(combinations(case_list, 3)) # 좌, 우, 상, 하 dr = [0, 0, -1, 1] dc = [-1, 1, 0, 0] catch = False def watch(r, c, board, catch): # 4방향으로 벽을 만날때까지 for i in range(4): nr = r + dr[i] nc = c + dc[i] while 0 <= nr and nr < n and 0 <= nc and nc < n: if board[nr][nc] == 'X': nr = nr + dr[i] nc = nc + dc[i] continue # 벽 또는 다른 선생을 만날 경우 다른 방향으로 넘어감 elif board[nr][nc] == 'O' or board[nr][nc] == 'T': break # 잡히면 해당 회차는 끝 elif board[nr][nc] == 'S': catch = True return catch return catch for case in case_list: hall_tmp = deepcopy(hall) for r, c in case: hall_tmp[r][c] = 'O' catch = False for teacher in teacher_list: r, c = teacher catch = watch(r, c, hall_tmp, catch) # print(catch) if catch: break if not catch: print('YES') exit() print("NO") | cs |
'Coding-Test' 카테고리의 다른 글
[BOJ-17409]증가 수열의 개수(in Python) (0) | 2021.07.03 |
---|---|
[BOJ-18405] 경쟁적 전염 (0) | 2021.02.26 |
Comments