結果
問題 | No.331 CodeRunnerでやれ |
ユーザー | alpha_virginis |
提出日時 | 2016-02-27 15:40:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,051 bytes |
コンパイル時間 | 751 ms |
コンパイル使用メモリ | 73,012 KB |
実行使用メモリ | 87,876 KB |
平均クエリ数 | 4.94 |
最終ジャッジ日時 | 2024-07-16 08:42:43 |
合計ジャッジ時間 | 8,422 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 139 ms
25,232 KB |
testcase_01 | AC | 165 ms
24,848 KB |
testcase_02 | RE | - |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <cstring> #include <iostream> #include <vector> #include <string> #include <map> #include <queue> #include <algorithm> #include <stack> enum { unknown, space, wall, }; int field[64][64]; int x = 32, y = 32; int px, py; int d = 0; void printfield() { for(int i = 0; i < 64; ++i) { for(int j = 0; j < 64; ++j) { if( y == i and x == j ) { char t[5] = "RDLU"; printf("%c", t[d]); continue; } char t2[4] = "+ #"; printf("%c", t2[field[i][j]]); } printf("\n"); } } int main() { field[y][x] = space; std::string str; for(;;) { //printfield(); label_1:; std::getline(std::cin, str); if( str == "Merry Christmas!" ) break; if( str.empty() ) goto label_1; //std::cout << "debug" << str << std::endl; int in = std::stoi(str); // step 1 : end? if( in == 20151224 ) { std::cout << "F" << std::endl; for(;;) { std::getline(std::cin, str); if( str == "Merry Christmas!" ) { break; } } break; } // step 2 : update field int dx[4] = {1, 0, -1, 0}; int dy[4] = {0, 1, 0, -1}; int nx = x + dx[d], ny = y + dy[d]; for(int i = 0; i < in; ++i) { field[ny][nx] = space; nx += dx[d]; ny += dy[d]; } field[ny][nx] = wall; // step 3 : right check if( field[y+dy[(d+1)%4]][x+dx[(d+1)%4]] == unknown ) { std::cout << "R" << std::endl; d = (d + 1) % 4; continue; } // step 4 : left check if( field[y+dy[(d+3)%4]][x+dx[(d+3)%4]] == unknown ) { std::cout << "L" << std::endl; d = (d + 3) % 4; continue; } if( field[y+dy[(d+2)%4]][x+dx[(d+2)%4]] == unknown ) { std::cout << "L" << std::endl; d = (d + 3) % 4; std::cin >> str; std::cout << "L" << std::endl; d = (d + 3) % 4; continue; } // step 5 move std::vector<int> movable = {}; for(int i = 0; i < 4; ++i) { if( field[y+dy[(d+i)%4]][x+dx[(d+i)%4]] == space and y+dy[(d+i)%4] != py and x+dx[(d+i)%4] != px ) { movable.push_back(i); } } int choice = movable[rand()%movable.size()]; px = x, py = y; if( movable.size() == 1 ) { px = 100; py = 100; } switch( choice ) { case 0 : std::cout << "F" << std::endl; x += dx[d]; y += dy[d]; break; case 1 : std::cout << "R" << std::endl; d = (d + 1) % 4; std::cin >> str; std::cout << "F" << std::endl; x += dx[d]; y += dy[d]; break; case 2 : std::cout << "R" << std::endl; d = (d + 1) % 4; std::cin >> str; std::cout << "R" << std::endl; d = (d + 1) % 4; std::cin >> str; std::cout << "F" << std::endl; x += dx[d]; y += dy[d]; break; case 3 : std::cout << "L" << std::endl; d = (d + 3) % 4; std::cin >> str; std::cout << "F" << std::endl; x += dx[d]; y += dy[d]; break; } } return 0; }