結果
問題 | No.5006 Hidden Maze |
ユーザー | siman |
提出日時 | 2022-06-16 00:26:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 4,760 bytes |
コンパイル時間 | 1,036 ms |
実行使用メモリ | 41,220 KB |
スコア | 38,548 |
平均クエリ数 | 105.01 |
最終ジャッジ日時 | 2022-06-16 00:26:35 |
合計ジャッジ時間 | 8,573 ms |
ジャッジサーバーID (参考情報) |
judge13 / judge15 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
21,980 KB |
testcase_01 | AC | 22 ms
21,904 KB |
testcase_02 | AC | 40 ms
21,768 KB |
testcase_03 | AC | 21 ms
21,892 KB |
testcase_04 | AC | 24 ms
21,820 KB |
testcase_05 | AC | 50 ms
21,980 KB |
testcase_06 | AC | 22 ms
22,504 KB |
testcase_07 | AC | 126 ms
21,952 KB |
testcase_08 | AC | 128 ms
21,892 KB |
testcase_09 | AC | 22 ms
21,780 KB |
testcase_10 | AC | 24 ms
22,480 KB |
testcase_11 | AC | 29 ms
22,420 KB |
testcase_12 | AC | 28 ms
22,476 KB |
testcase_13 | AC | 28 ms
22,228 KB |
testcase_14 | AC | 37 ms
21,892 KB |
testcase_15 | AC | 22 ms
22,240 KB |
testcase_16 | AC | 21 ms
21,916 KB |
testcase_17 | AC | 21 ms
21,904 KB |
testcase_18 | AC | 52 ms
22,536 KB |
testcase_19 | AC | 40 ms
21,904 KB |
testcase_20 | AC | 22 ms
21,952 KB |
testcase_21 | AC | 25 ms
21,952 KB |
testcase_22 | AC | 21 ms
22,584 KB |
testcase_23 | AC | 24 ms
21,892 KB |
testcase_24 | AC | 41 ms
21,904 KB |
testcase_25 | AC | 37 ms
21,940 KB |
testcase_26 | AC | 116 ms
22,252 KB |
testcase_27 | AC | 74 ms
21,892 KB |
testcase_28 | AC | 24 ms
22,632 KB |
testcase_29 | AC | 38 ms
22,768 KB |
testcase_30 | AC | 21 ms
21,928 KB |
testcase_31 | AC | 22 ms
21,928 KB |
testcase_32 | AC | 43 ms
21,892 KB |
testcase_33 | AC | 28 ms
22,536 KB |
testcase_34 | AC | 21 ms
21,808 KB |
testcase_35 | AC | 19 ms
22,432 KB |
testcase_36 | AC | 19 ms
21,892 KB |
testcase_37 | AC | 126 ms
22,612 KB |
testcase_38 | AC | 129 ms
21,792 KB |
testcase_39 | AC | 50 ms
21,964 KB |
testcase_40 | AC | 19 ms
21,612 KB |
testcase_41 | AC | 22 ms
21,892 KB |
testcase_42 | AC | 19 ms
22,432 KB |
testcase_43 | AC | 62 ms
22,432 KB |
testcase_44 | AC | 22 ms
21,928 KB |
testcase_45 | AC | 24 ms
21,736 KB |
testcase_46 | AC | 136 ms
22,432 KB |
testcase_47 | AC | 24 ms
21,904 KB |
testcase_48 | AC | 21 ms
21,792 KB |
testcase_49 | TLE | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
testcase_74 | -- | - |
testcase_75 | -- | - |
testcase_76 | -- | - |
testcase_77 | -- | - |
testcase_78 | -- | - |
testcase_79 | -- | - |
testcase_80 | -- | - |
testcase_81 | -- | - |
testcase_82 | -- | - |
testcase_83 | -- | - |
testcase_84 | -- | - |
testcase_85 | -- | - |
testcase_86 | -- | - |
testcase_87 | -- | - |
testcase_88 | -- | - |
testcase_89 | -- | - |
testcase_90 | -- | - |
testcase_91 | -- | - |
testcase_92 | -- | - |
testcase_93 | -- | - |
testcase_94 | -- | - |
testcase_95 | -- | - |
testcase_96 | -- | - |
testcase_97 | -- | - |
testcase_98 | -- | - |
testcase_99 | -- | - |
ソースコード
#include <cassert> #include <cmath> #include <algorithm> #include <iostream> #include <iomanip> #include <climits> #include <map> #include <queue> #include <set> #include <cstring> #include <vector> using namespace std; typedef long long ll; const ll CYCLE_PER_SEC = 2700000000; double TIME_LIMIT = 1.8; unsigned long long int get_cycle() { unsigned int low, high; __asm__ volatile ("rdtsc" : "=a" (low), "=d" (high)); return ((unsigned long long int) low) | ((unsigned long long int) high << 32); } double get_time(unsigned long long int begin_cycle) { return (double) (get_cycle() - begin_cycle) / CYCLE_PER_SEC; } unsigned long long xor128() { static unsigned long long rx = 123456789, ry = 362436069, rz = 521288629, rw = 88675123; unsigned long long rt = (rx ^ (rx << 11)); rx = ry; ry = rz; rz = rw; return (rw = (rw ^ (rw >> 19)) ^ (rt ^ (rt >> 8))); } const int H = 20; const int W = 20; const int DY[4] = {-1, 0, 1, 0}; const int DX[4] = {0, 1, 0, -1}; const string DS[4] = {"U", "R", "D", "L"}; const int MAX_TURN = 1001; int p; int ng_counter[H * W][H * W]; int ok_counter[H * W][H * W]; bool is_inside(int y, int x) { return 0 <= y && y < H && 0 <= x && x < W; } int calc_z(int y, int x) { return y * W + x; } struct Node { int y; int x; double value; int last_dir; Node(int y = -1, int x = -1, double value = 0.0, int last_dir = -1) { this->y = y; this->x = x; this->value = value; this->last_dir = last_dir; } bool operator>(const Node &n) const { return value > n.value; } }; class HiddenMaze { public: void init() { memset(ng_counter, 0, sizeof(ng_counter)); memset(ok_counter, 0, sizeof(ok_counter)); } void run() { ll start_cycle = get_cycle(); for (int t = 0; t < MAX_TURN; ++t) { double cur_time = get_time(start_cycle); if (cur_time < TIME_LIMIT) { vector<int> path = find_path(); string query = path2str(path); int res = send_query(query); if (res == -1) break; update_maze_data(res, path); } else { string query = "RRRR"; int res = send_query(query); } } } int send_query(string query) { cout << query << endl; int res; cin >> res; return res; } string path2str(vector<int> &path) { string res = ""; for (int dir : path) { res += DS[dir]; } return res; } void update_maze_data(int res, vector<int> &path) { int cy = 0; int cx = 0; for (int i = 0; i <= res; ++i) { int dir = path[i]; int ny = cy + DY[dir]; int nx = cx + DX[dir]; int z = calc_z(cy, cx); int nz = calc_z(ny, nx); if (i == res) { ng_counter[z][nz]++; } else { ok_counter[z][nz]++; } cy = ny; cx = nx; } } double calc_wall_rate(int z, int nz) { int ok_cnt = ok_counter[z][nz]; int ng_cnt = ng_counter[z][nz]; int try_count = (ok_cnt + ng_cnt); if (try_count == 0) { return 0.5; } else { return ng_cnt * 1.0 / try_count; } } vector<int> find_path() { priority_queue <Node, vector<Node>, greater<Node>> pque; pque.push(Node(0, 0, 0)); bool visited[H][W]; int history[H][W]; memset(history, -1, sizeof(history)); memset(visited, false, sizeof(visited)); while (not pque.empty()) { Node node = pque.top(); int z = calc_z(node.y, node.x); pque.pop(); if (visited[node.y][node.x]) continue; visited[node.y][node.x] = true; history[node.y][node.x] = node.last_dir; if (node.y == H - 1 && node.x == W - 1) { vector<int> path; int cy = node.y; int cx = node.x; while (cy != 0 || cx != 0) { int dir = history[cy][cx]; path.push_back(dir); cy += DY[dir ^ 2]; cx += DX[dir ^ 2]; } reverse(path.begin(), path.end()); return path; } for (int dir = 0; dir < 4; ++dir) { int ny = node.y + DY[dir]; int nx = node.x + DX[dir]; int nz = calc_z(ny, nx); if (not is_inside(ny, nx)) continue; int ok_cnt = ok_counter[z][nz]; int ng_cnt = ng_counter[z][nz]; int try_count = ok_cnt + ng_cnt; double wall_rate = calc_wall_rate(z, nz); if (try_count > 5 && wall_rate > 0.5) continue; double value = node.value + 1000 * calc_wall_rate(z, nz) + 1.0; value += 0.0001 * (xor128() % 100); Node next(ny, nx, value, dir); pque.push(next); } } return vector<int>(); } }; int main() { int _H, _W; cin >> _H >> _W >> p; fprintf(stderr, "H: %d, W: %d, p: %d\n", H, W, p); HiddenMaze hm; hm.run(); return 0; }