_,x,k,*shupples = open(0).read().split()
k=int(k)
for i in range(0,k<<1,2):
if shupples[i]==x:
x = shupples[i+1]
elif shupples[i+1]==x:
x = shupples[i]
open(1,'w').write(x)
'Tech > Coding' 카테고리의 다른 글
백준2293🐨동전 1 (0) | 2024.07.21 |
---|---|
백준4158🐨CD - 집념의 이터레이션 feat. map은 메모리를 먹는다. (2) | 2024.07.18 |
AtCoder🐨Beginner Contest 362 - C. Sum = 0 (0) | 2024.07.14 |
C언어 고급] 13🚀변수의 영역과 데이터 공유 (0) | 2024.04.04 |
C언어 고급] 12🚀문자열 (0) | 2024.03.31 |