// clang-format off #include #include #include #define mp make_pair #define fst first #define snd second #define forn(i,n) for (int i = 0; i < int(n); i++) #define forn1(i,n) for (int i = 1; i <= int(n); i++) #define popcnt __builtin_popcountll #define ffs __builtin_ffsll #define ctz __builtin_ctzll #define clz __builtin_clz #define clzll __builtin_clzll #define all(a) (a).begin(), (a).end() using namespace std; using namespace __gnu_pbds; using uint = unsigned int; using ll = long long; using ull = unsigned long long; using pii = pair; using pli = pair; using pil = pair; using pll = pair; template using vec = vector; using vi = vec; using vl = vec; template using que = queue; template using deq = deque; template using ordered_set = tree, rb_tree_tag, tree_order_statistics_node_update>; template using ordered_map = tree, rb_tree_tag, tree_order_statistics_node_update>; template T id(T b) {return b;}; template void chmax(T &x, T y) {if (x < y) x = y;} template void chmin(T &x, T y) {if (x > y) x = y;} template bool contains(S &s, K k) { return s.find(k) != s.end(); } template bool getf(T flag, size_t i) { return (flag>>i) & 1; } template T setf(T flag, size_t i) { return flag | (T(1)< T unsetf(T flag, size_t i) { return flag & ~(T(1)<> n >> m; // if (m < 2 * n - 1) { // cout << "No\n"; // return 0; // } auto ok = [&](int i, int j) { return 0 <= i and i < n and 0 <= j and j < n; }; auto ask = [](int i, int j) { cout << i + 1 << " " << j + 1 << endl; string s; cin >> s; if (s == "-1") { cerr << "-1\n"; exit(0); } if (s == "Black") return 1; else return 0; }; vec col(n, vi(n, -1)); col[0][0] = col[n - 1][n - 1] = 1; int di[4] = { -1, 0, 1, 0 }; int dj[4] = { 0, 1, 0, -1 }; que q({ mp(0, 0) }); while (!q.empty()) { auto [i, j] = q.front(); q.pop(); forn(k, 4) { int newi = i + di[k]; int newj = j + dj[k]; if (!ok(newi, newj) or col[newi][newj] >= 0) continue; col[newi][newj] = ask(newi, newj); if (col[newi][newj] == 1) q.emplace(newi, newj); } } assert(q.empty()); q.emplace(0, 0); vec> vis(n, vec(n)); vis[0][0] = true; while (!q.empty()) { auto [i, j] = q.front(); q.pop(); forn(k, 4) { int newi = i + di[k]; int newj = j + dj[k]; if (!ok(newi, newj) or vis[newi][newj] or col[newi][newj] != 1) continue; vis[newi][newj] = true; q.emplace(newi, newj); } } cout << (vis[n - 1][n - 1] ? "Yes" : "No") << endl; return 0; }