結果

問題 No.351 市松スライドパズル
ユーザー data9824data9824
提出日時 2016-04-07 02:05:25
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 62,324 KB
実行使用メモリ 11,600 KB
最終ジャッジ日時 2024-09-25 03:00:36
合計ジャッジ時間 5,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 265 ms
11,384 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 352 ms
11,468 KB
testcase_14 AC 354 ms
11,468 KB
testcase_15 AC 363 ms
11,596 KB
testcase_16 AC 363 ms
11,468 KB
testcase_17 AC 358 ms
11,596 KB
testcase_18 AC 357 ms
11,596 KB
testcase_19 AC 361 ms
11,472 KB
testcase_20 AC 360 ms
11,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <utility>

using namespace std;

int main() {
	int h, w, n;
	cin >> h >> w >> n;
	vector<pair<char, int> > operations;
	for (int i = 0; i < n; ++i) {
		string s;
		int k;
		cin >> s >> k;
		operations.push_back(make_pair(s[0], k));
	}
	int x = 0;
	int y = 0;
	for (int i = operations.size() - 1; i >= 0; --i) {
		if (operations[i].first == 'R') {
			if (operations[i].second == y) {
				--x;
				if (x < 0) {
					x = w - 1;
				}
			}
		} else {
			if (operations[i].second == x) {
				--y;
				if (y < 0) {
					y = h - 1;
				}
			}
		}
	}
	cout << ((x + y) % 2 == 0 ? "white" : "black") << endl;
	return 0;
}
0