#include #include #include #define repeat(i,n) for (int i = 0; (i) < int(n); ++(i)) using namespace std; bool solve(int h, int w, vector const & f) { auto is_on_field = [&](int y, int x) { return 0 <= y and y < h and 0 <= x and x < w; }; auto pred = [&](int y, int x) { return is_on_field(y, x) and f[y][x] == '.'; }; const int dy[] = { 0, -1, 0, 1 }; // counter-clockwise const int dx[] = { 1, 0, -1, 0 }; int total = 0; repeat (y,h) repeat (x,w) total += pred(y, x); repeat (y0,h) repeat (x0,w) if (pred(y0, x0)) { repeat (d0,4) { int y = y0; int x = x0; int d = d0; set > used; while (true) { if (not used.empty() and y == y0 and x == x0) { if (used.size() == total) return true; break; } int dd = 0; for (; dd < 2; ++ dd) { int nd = (d + dd) % 4; int ny = y + dy[nd]; int nx = x + dx[nd]; if (pred(ny, nx) and not used.count(make_pair(ny, nx))) { y = ny; x = nx; d = nd; used.insert(make_pair(y, x)); break; } } if (dd == 2) break; } } } return false; } int main() { int h, w; cin >> h >> w; vector f(h); repeat (y,h) cin >> f[y]; cout << (solve(h, w, f) ? "YES" : "NO") << endl; return 0; }