結果

問題 No.351 市松スライドパズル
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-04-17 14:31:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 652 ms
コンパイル使用メモリ 70,416 KB
実行使用メモリ 8,172 KB
最終ジャッジ日時 2024-09-25 03:01:01
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdlib>
#include <ios>
#include <iostream>
#include <vector>


int main() {
	std::cout.tie(nullptr);
	std::ios::sync_with_stdio(false);
	int h, w, n;
	std::cin >> h >> w >> n;
	std::vector<char> s(n);
	std::vector<int> k(n);
	for (auto i = 0; i < n; i++)
	{
		std::cin >> s[i] >> k[i];
	}
	int r = 0, c = 0;
	for (auto i = n - 1; i >= 0; i--) {
		if (s[i] == 'R' && k[i] == r)
		{
			c = (c + w - 1) % w;
		}
		else if (s[i] == 'C' && k[i] == c)
		{
			r = (r + h - 1) % h;
		}
	}
	std::cout << ((r + c) % 2 == 0 ? "white" : "black") << std::endl;

	return EXIT_SUCCESS;
}
0