1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
| // // main.cpp // DiceyProblem // // Created by zhangmin chen on 2019/4/17. // Copyright © 2019 zhangmin chen. All rights reserved. //
using namespace std; typedef long long llong;
// dice[face][top] = left // check: // (1, 1) = null, (1, 2) = 3, (1, 3) = 5, (1, 4) = 2, (1, 5) = 4, (1, 6) = null // (2, 1) = 4, (2, 2) = null, (2, 3) = 1, (2, 4) = 6, (2, 5) = null, (2, 6) = 3 // (3, 1) = 2, (3, 2) = 6, (3, 3) = null, (3, 4) = null, (3, 5) = 1, (3, 6) = 5 // (4, 1) = 5, (4, 2) = 1, (4, 3) = null, (4, 4) = null, (4, 5) = 6, (4, 6) = 2 // (5, 1) = 3, (5, 2) = null, (5, 3) = 6, (5, 4) = 1, (5, 5) = null, (5, 6) = 4 // (6, 1) = null, (6, 2) = 4, (6, 3) = 2, (6, 4) = 5, (6, 5) = 3, (6, 6) = null
const int maxn = 15;
const int dice[6][6] = { {-1, 3, 5, 2, 4, -1}, {4, -1, 1, 6, -1, 3}, {2, 6, -1, -1, 1, 5}, {5, 1, -1, -1, 6, 2}, {3, -1, 6, 1, -1, 4}, {-1, 4, 2, 5, 3, -1} };
const int dr[4] = {-1, 0, 1, 0}; const int dc[4] = {0, -1, 0, 1}; // {up, left, down, right}
const int UP = 0, LEFT = 1, DOWN = 2, RIGHT = 3; int R, C; int grid[maxn][maxn];
class Stat { public: int r, c; int face, back, top, bottom, left, right; Stat* prev; // why prev? did we need nxt? Stat() { prev = NULL; } Stat(int r, int c) : r(r), c(c) {} void init(int top, int face) { this->top = top; this->face = face; back = 7 - face; bottom = 7 - top; left = dice[face - 1][top - 1]; right = 7 - left; } bool canMove(int dir); Stat* move(int dir); // usage: if(canMove(i)) move(i) int hash() const { return 1000 * (r-1) + 100 * (c-1) + 10 * top + face; } };
typedef Stat* Statp;
class MemPool { public: vector<Statp> buf; Statp create() { // buf.push_back(new Stat()); return buf.back(); } void fresh() { for(int i = 0; i < buf.size(); i++) delete buf[i]; buf.clear(); } };
struct StatCmp { // bool operator() (const Statp& lhs, const Statp& rhs) const { return lhs->hash() < rhs->hash(); } };
MemPool pools;
bool Stat::canMove(int dir) { // int nr = r + dr[dir], nc = c + dc[dir]; if(nr > R || nr < 1 || nc > C || nc < 1) return false; int mv = grid[nr][nc]; if(mv == 0) return false; return mv == -1 || mv == top; }
Statp Stat::move(int dir) { // // usage: // if(canMove(dir)) move(dir) Statp nxt = pools.create(); int nr = r + dr[dir], nc = c + dc[dir]; nxt->prev = this; nxt->r = nr; nxt->c = nc; if(dir == UP) nxt->init(face, bottom); if(dir == LEFT) nxt->init(right, face); if(dir == DOWN) nxt->init(back, top); if(dir == RIGHT) nxt->init(left, face); return nxt; }
Statp bfs(const Stat& dest, Statp beg) { // queue<Statp> que; set<Statp, StatCmp> vis; que.push(beg); vis.insert(beg); while(!que.empty()) { Statp cur = que.front(); que.pop(); if(cur->r == dest.r && cur->c == dest.c) return cur; for(int i = 0; i < 4; i++) { if(cur->canMove(i)) { Statp nxt = cur->move(i); if(vis.count(nxt)) continue; vis.insert(nxt); que.push(nxt); } } } return NULL; }
int main() { freopen("input.txt", "r", stdin); string name; deque<Statp> res; while(cin >> name && name != "END") { memset(grid, 0, sizeof(grid)); cin >> R >> C; int tmpR, tmpC, tmpT, tmpF; cin >> tmpR >> tmpC >> tmpT >> tmpF; Stat st(tmpR, tmpC); st.prev = NULL; st.init(tmpT, tmpF); for(int i = 1; i <= R; i++) for(int j = 1; j <= C; j++) cin >> grid[i][j]; cout << name << endl; // finish init! then bfs() Statp ans = NULL; for(int i = 0; i < 4; i++) { if(st.canMove(i)) { ans = bfs(st, st.move(i)); if(ans) break; } } if(ans) { res.clear(); while(ans) { res.push_front(ans); ans = ans->prev; } for(int i = 0; i < res.size(); i++) { if(i) { cout << ","; if(i % 9 == 0) cout << endl; } if(i % 9 == 0) cout << " "; cout << "(" << res[i]->r << "," << res[i]->c << ")"; } cout << endl; } else cout << " No Solution Possible" << endl; pools.fresh(); } }
|