//https://www.acmicpc.net/problem/1547 #include <iostream> |
using namespace std; |
int main() |
{ |
int m; |
bool cup[4]={0,1,0,0}; |
cin >> m; |
for(int i=0 ;i<m; i++) |
{ |
int x,y; |
cin >> x >> y; |
int tmp=cup[x]; |
cup[x]=cup[y]; |
cup[y]=tmp; |
} |
for(int i=1; i<=3; i++) |
if(cup[i]) cout << i << endl; |
} |
'알고리즘 문제 풀이 > 1DP_과제(~180615)' 카테고리의 다른 글
171224_10797_10부제 (0) | 2017.12.24 |
---|---|
171224_1357_뒤집힌 덧셈 (0) | 2017.12.24 |
171222_14646_욱제는 결정장애야!! (0) | 2017.12.22 |
171221_2010_플러그 (0) | 2017.12.21 |
171220_3986_좋은 단어 (0) | 2017.12.20 |