Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- group by
- 티스토리챌린지
- SQL
- SQL 고득점 KIT
- 소프티어
- 오블완
- Python
- Lv. 3
- softeer
- 동적계획법
- level 3
- Java
- Dynamic Programming
- 프로그래머스
- 파이썬
- programmers
- bfs
- Lv. 1
- DP
- Baekjoon
- 백준
- Lv. 0
- 깊이 우선 탐색
- Lv. 2
- LEVEL 2
- 너비 우선 탐색
- 자바스크립트
- dfs
- javascript
- join
Archives
- Today
- Total
목록implementation (1)
몸과 마음이 건전한 SW 개발자

문제 링크https://www.acmicpc.net/problem/15684내 코드import sysinput = sys.stdin.readlinen, m, h = map(int, input().split())board = [[0] * (n+1) for _ in range(h+1)]for _ in range(m): row, column = map(int, input().split()) board[row][column] = column + 1 board[row][column+1] = columndef check(board, destination): c = destination for r in range(1, h+1): if board[r][c]: ..
알고리즘/풀었지만 다시 보기
2025. 1. 23. 21:01