본문 바로가기

코딩 테스트

백준 1547

#include <iostream>
using namespace std;


int main(void)
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int input = 0;
	cin >> input;

	int cups[4] = {0, 1,2,3 };

	int ball = 1;

	for (int i = 0; i < input; ++i)
	{
		int a, b;
		cin >> a >> b;


		if (a == ball && b != ball)
		{
			ball = cups[b];
		}
		else if (a != ball && b == ball)
		{
			ball = cups[a];
		}


	}

	cout << ball;
	return 0;
}

'코딩 테스트' 카테고리의 다른 글

백준 7568  (0) 2023.07.05
백준 11866  (0) 2023.07.04
백준 1267  (0) 2023.07.03
백준 2741  (0) 2023.07.02
백준 1259  (0) 2023.07.01