[백준] #10812 바구니 순서 바꾸기 python
2023. 3. 18. 06:00
https://www.acmicpc.net/problem/10812
📕 설명 📕
python의 indexing기법으로 풀이하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
N, M = map(int ,input().split())
result = [i for i in range(1,N+1)]
for _ in range(M):
i, j, k = map(int,input().split())
result = result[:i-1] + result[k - 1:j]+result[i-1:k-1]+result[j:]
print(result)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #10798 세로읽기 python (0) | 2023.03.20 |
---|---|
[백준] #25206 너의 평점은 python (0) | 2023.03.19 |
[백준] #11718 그대로 출력하기 python (0) | 2023.03.16 |
[백준] #9086 문자열 python (1) | 2023.03.15 |
[백준] #10811 바구니 뒤집기 python (0) | 2023.03.14 |