#include <iostream>#include <algorithm>using namespace std;int main(){bool v[4] = { false, true, false, false };int testcase, k = 0;cin >> testcase;for (int i = 1; i <= testcase; i++){int a, b;cin >> a >> b;swap(v[a], v[b]);}for (int i = 1; i <= 3; i++){if (v[i]){k = 1;cout << i;break;}}if (k == 0)cout << "-1";}
'백준' 카테고리의 다른 글
[9251] LCS (0) | 2018.10.20 |
---|---|
[1912] 연속합 (0) | 2018.10.20 |
[1065] 한수 (0) | 2018.10.20 |
[7568] 덩치 (0) | 2018.10.20 |
[2231] 분해합 (0) | 2018.10.20 |