boj step 4 rework

This commit is contained in:
2024-02-19 13:23:50 +09:00
parent e39d555bd0
commit bad1f0723a
5 changed files with 44 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
N, M = map(int, input().split())
L = [i for i in range(1, N + 1)]
def swap(i, j):
global L
L[i - 1], L[j - 1] = L[j - 1], L[i - 1]
for _ in range(M):
i, j = map(int, input().split())
swap(i, j)
print(" ".join(map(str, L)))