結果

問題 No.351 市松スライドパズル
ユーザー HachimoriHachimori
提出日時 2016-03-11 23:14:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 465 ms
コンパイル使用メモリ 54,792 KB
実行使用メモリ 8,300 KB
最終ジャッジ日時 2024-09-25 02:34:57
合計ジャッジ時間 4,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 228 ms
8,208 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 306 ms
8,044 KB
testcase_14 AC 307 ms
8,028 KB
testcase_15 AC 316 ms
8,276 KB
testcase_16 AC 318 ms
8,300 KB
testcase_17 AC 309 ms
8,212 KB
testcase_18 AC 311 ms
8,244 KB
testcase_19 AC 314 ms
8,188 KB
testcase_20 AC 313 ms
8,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
const int BUF = 1000005;

int row, col;
int nRcIdx;
char rc[BUF];
int idx[BUF];

void read() {
    cin >> row >> col;
    cin >> nRcIdx;
    for (int i = 0; i < nRcIdx; ++i) {
        cin >> rc[i] >> idx[i];
    }
}


void work() {
    int r = 0;
    int c = 0;
    for (int i = nRcIdx - 1; i >= 0; --i) {
        if (rc[i] == 'R' && r == idx[i]) {
            c = (c + col - 1) % col;
        }
        else if (rc[i] == 'C' && c == idx[i]) {
            r = (r + row - 1) % row;
        }
    }
    cout << ((r + c) % 2 == 0 ? "white" : "black") << endl;
}


int main() {
    read();
    work();
    return 0;
}
0