結果

問題 No.351 市松スライドパズル
ユーザー femtofemto
提出日時 2016-08-20 18:58:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 77,460 KB
実行使用メモリ 8,412 KB
最終ジャッジ日時 2024-09-25 03:03:53
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
8,412 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 98 ms
8,216 KB
testcase_14 AC 99 ms
8,344 KB
testcase_15 AC 99 ms
8,320 KB
testcase_16 AC 98 ms
8,192 KB
testcase_17 AC 97 ms
8,364 KB
testcase_18 AC 93 ms
8,272 KB
testcase_19 AC 99 ms
8,368 KB
testcase_20 AC 98 ms
8,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
using namespace std;

char S[1000000];
int K[1000000];

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	int H, W, N;
	cin >> H >> W >> N;
	for(int i = 0; i < N; i++) {
		cin >> S[i] >> K[i];
	}
	reverse(S, S + N);
	reverse(K, K + N);

	int x = 0, y = 0;
	for(int i = 0; i < N; i++) {
		if(S[i] == 'R') {
			if(K[i] == y) {
				x = (x - 1 + W) % W;
			}
		}
		else {
			if(K[i] == x) {
				y = (y - 1 + H) % H;
			}
		}
	}

	if((x + y) % 2 == 0) {
		cout << "white" << endl;
	}
	else {
		cout << "black" << endl;
	}
}
0