#include #include #include #include #define r first #define c second using namespace std; typedef pair Point; const int BUF = 1005; int dr[] = {1, 0, -1, 0}; int dc[] = {0, 1, 0, -1}; int row, col; bool canPass[BUF][BUF][4]; int sign(int v) { if (v > 0) return 1; if (v < 0) return -1; return 0; } void read() { memset(canPass, 0, sizeof(canPass)); int nRoute; cin >> row >> col >> nRoute; for (int i = 0; i < nRoute; ++i) { int nPt; cin >> nPt; nPt++; vector ptList; for (int j = 0; j < nPt; ++j) { int v; cin >> v; ptList.push_back(Point(v / col, v % col)); } for (int j = 0; j + 1 < nPt; ++j) { Point &cur = ptList[j]; Point &nex = ptList[j + 1]; for (int k = 0; k < 4; ++k) { if (!(sign(nex.r - cur.r) == sign(dr[k]) && sign(nex.c - cur.c) == sign(dc[k]))) continue; int cr = cur.r; int cc = cur.c; while (!(cr == nex.r && cc == nex.c)) { canPass[cr][cc][k] = true; canPass[cr + dr[k]][cc + dc[k]][(k + 2) % 4] = true; cr += dr[k]; cc += dc[k]; } break; } } } } void work() { static int cost[BUF][BUF]; queue Q; memset(cost, -1, sizeof(cost)); cost[0][0] = 0; Q.push(Point(0, 0)); while (!Q.empty()) { Point cur = Q.front(); Q.pop(); if (cur.r == row - 1 && cur.c == col - 1) { cout << cost[cur.r][cur.c] << endl; return; } for (int i = 0; i < 4; ++i) { int nr = cur.r + dr[i]; int nc = cur.c + dc[i]; if (!canPass[cur.r][cur.c][i]) continue; if (!(0 <= nr && nr < row && 0 <= nc && nc < col)) continue; if (cost[nr][nc] != -1) continue; cost[nr][nc] = cost[cur.r][cur.c] + 1; Q.push(Point(nr, nc)); } } cout << "Odekakedekinai.." << endl; } int main() { read(); work(); return 0; }