結果

問題 No.351 市松スライドパズル
ユーザー TatsunoTatsuno
提出日時 2016-03-12 01:37:15
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,026 bytes
コンパイル時間 1,248 ms
コンパイル使用メモリ 162,300 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-25 02:43:24
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
10,880 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 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 1 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 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 314 ms
10,796 KB
testcase_14 AC 312 ms
10,848 KB
testcase_15 AC 313 ms
11,008 KB
testcase_16 AC 316 ms
10,908 KB
testcase_17 AC 311 ms
10,984 KB
testcase_18 AC 304 ms
10,880 KB
testcase_19 AC 311 ms
11,008 KB
testcase_20 AC 315 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using int64 = int64_t;
#define times(n, i) for (int i = 0; i < n; i++)
#define range(n, m, i) for (int i = n; i < m; i++)
#define upto(n, m, i) for (int i = n; i <= m; i++)
#define downto(n, m, i) for (int i = n; i >= m; i--)
#define foreach(xs, x) for (auto &x : xs)
#define all(xs) (xs).begin(), (xs).end()
#define sortall(xs) sort(all(xs))
#define reverseall(xs) reverse(all(xs))
#define uniqueall(xs) erase(unique(all(xs)), (xs).end())
int64 mod10e9_7 = 1000000007;

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