結果

問題 No.351 市松スライドパズル
ユーザー roarisroaris
提出日時 2019-12-20 00:19:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 616 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 166,480 KB
実行使用メモリ 8,416 KB
最終ジャッジ日時 2024-07-07 02:15:45
合計ジャッジ時間 4,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
8,416 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 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,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 96 ms
8,164 KB
testcase_14 AC 98 ms
8,164 KB
testcase_15 AC 101 ms
8,376 KB
testcase_16 AC 99 ms
8,316 KB
testcase_17 AC 95 ms
8,180 KB
testcase_18 AC 94 ms
8,280 KB
testcase_19 AC 100 ms
8,288 KB
testcase_20 AC 99 ms
8,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    int H, W; cin >> H >> W;
    int N; cin >> N;
    char S[N];
    int K[N];
    
    for (int i=0; i<N; i++) cin >> S[i] >> K[i];
    
    int nx=0, ny=0;
    
    for (int i=N-1; i>=0; i--) {
        if (S[i]=='R' && K[i]==nx) {
            if (ny==0) ny = W-1;
            else ny -= 1;
        }
        else if (S[i]=='C' && K[i]==ny) {
            if (nx==0) nx = H-1;
            else nx -= 1;
        }
    }
    
    if ((nx+ny)%2==0) cout << "white" << endl;
    else cout << "black" << endl;
}
0