Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
- Comparator
Archives
- Today
- Total
기록
프로그래머스_행렬 테두리 회전하기 본문
문제
https://programmers.co.kr/learn/courses/30/lessons/77485
풀이
1. 시계방향으로 회전
2. 가장 작은 값을 저장
코드
def solution(rows, columns, queries):
matrix = [[r*columns+c+1 for c in range(columns)] for r in range(rows)]
result = list()
# 회전하기
for r1, c1, r2, c2 in queries :
result.append(10000)
item = matrix[r1-1][c1-1]
for j in range(c1, c2) :
matrix[r1-1][j], item = item, matrix[r1-1][j] # 값 교환하기
result[-1] = min(result[-1], item) # 최솟값 얻기
for i in range(r1, r2) :
matrix[i][j], item = item, matrix[i][j] # 값 교환하기
result[-1] = min(result[-1], item) # 최솟값 얻기
for j in range(c2-2, c1-2, -1) :
matrix[i][j], item = item, matrix[i][j] # 값 교환하기
result[-1] = min(result[-1], item) # 최솟값 얻기
for i in range(r2-2, r1-2, -1) :
matrix[i][j], item = item, matrix[i][j] # 값 교환하기
result[-1] = min(result[-1], item) # 최솟값 얻기
return result
'코딩테스트 > python' 카테고리의 다른 글
프로그래머스_괄호 회전하기 (0) | 2021.05.18 |
---|---|
프로그래머스_쿼드압축 후 개수 세기 (0) | 2021.05.18 |
백준_9328_열쇠 (0) | 2021.02.11 |
백준_17404_RGB거리 2 (0) | 2021.02.05 |
백준_1149_RGB거리 (0) | 2021.02.05 |
Comments