結果
問題 | No.351 市松スライドパズル |
ユーザー | めうめう🎒 |
提出日時 | 2016-03-11 23:17:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 328 ms / 2,000 ms |
コード長 | 928 bytes |
コンパイル時間 | 770 ms |
コンパイル使用メモリ | 87,540 KB |
実行使用メモリ | 13,084 KB |
最終ジャッジ日時 | 2024-09-25 02:36:45 |
合計ジャッジ時間 | 5,054 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 226 ms
12,212 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 318 ms
12,664 KB |
testcase_14 | AC | 319 ms
13,084 KB |
testcase_15 | AC | 325 ms
11,484 KB |
testcase_16 | AC | 323 ms
11,932 KB |
testcase_17 | AC | 321 ms
13,004 KB |
testcase_18 | AC | 326 ms
12,364 KB |
testcase_19 | AC | 325 ms
12,472 KB |
testcase_20 | AC | 328 ms
12,612 KB |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <math.h> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> #include <iomanip> using namespace std; #define ll long long #define INF (1 << 30) #define INFLL (1LL << 60) int main() { int h,w,n; vector<pair<char,int> > move; cin >> h >> w >> n; char a; int b; for(int i = 0;i < n;i++){ cin >> a >> b; move.push_back(make_pair(a,b)); } pair<int,int> now; now = make_pair(0,0); for(int i = move.size()-1;i >= 0;i--){ char muki = move[i].first; int zahyo = move[i].second; int nx = now.first,ny = now.second; if(muki == 'R'){ if(ny == zahyo) nx--; if(nx < 0) nx = w-1; }else{ if(nx == zahyo) ny--; if(ny < 0) ny = h-1; } now = make_pair(nx,ny); } if((now.first + now.second) % 2 == 0) cout << "white" << endl; else cout << "black" << endl; return 0; }