結果

問題 No.351 市松スライドパズル
ユーザー hogeover30hogeover30
提出日時 2017-06-17 01:52:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 653 ms
コンパイル使用メモリ 79,240 KB
実行使用メモリ 11,132 KB
最終ジャッジ日時 2024-10-01 06:59:11
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
11,004 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 108 ms
10,804 KB
testcase_14 AC 108 ms
10,796 KB
testcase_15 AC 109 ms
11,012 KB
testcase_16 AC 105 ms
11,108 KB
testcase_17 AC 105 ms
10,956 KB
testcase_18 AC 104 ms
11,060 KB
testcase_19 AC 107 ms
11,072 KB
testcase_20 AC 106 ms
11,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    cin.sync_with_stdio(0);
    cin.tie(0);

    int h, w, n; cin>>h>>w>>n;
    vector<pair<char, int>> q(n);
    for(auto& e: q) {
        string s;
        int k;
        cin>>s>>k;
        e=make_pair(s[0], k);
    }
    reverse(begin(q), end(q));

    int r=0, c=0;
    for(auto& e: q) {
        int k=e.second;
        if (e.first=='R') {
            if (r==k) {
                --c;
                if (c<0) c+=w;
            }
        }
        else {
            if (c==k) {
                --r;
                if (r<0) r+=h;
            }
        }
    }
    cout<<((r+c)%2 ? "black" : "white")<<endl;
}
0