結果
問題 | No.351 市松スライドパズル |
ユーザー | nnasen |
提出日時 | 2018-02-24 18:39:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 322 ms / 2,000 ms |
コード長 | 728 bytes |
コンパイル時間 | 1,472 ms |
コンパイル使用メモリ | 166,212 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-10-15 04:24:27 |
合計ジャッジ時間 | 5,887 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> #define FOR(i,a,b) for(int i = (a); i < (b); ++i) #define REP(i,n) FOR(i,0,n) #define RREP(i,n) for(int i = (n) - 1; (i) >= 0; --i) #define SZ(n) (int)(n).size() #define ALL(n) (n).begin(), (n).end() #define MOD LL(1e9 + 7) #define INF 1000000 using namespace std; typedef long long LL; typedef vector<int> VI; typedef pair<int, int> PI; char c[1000001]; int l[1000001]; int main() { int h, w, n; cin >> h >> w >> n; REP(i, n) cin >> c[i] >> l[i]; int x = 0; int y = 0; RREP(i, n) { if (c[i] == 'R' && l[i] == y) x = (x + w - 1) % w; else if(c[i] == 'C' && l[i] == x) y = (y + h - 1) % h; } if ((x + y) % 2) cout << "black" << endl; else cout << "white" << endl; return 0; }