結果

問題 No.1588 Connection
ユーザー sash0sash0
提出日時 2021-07-08 23:56:21
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 3,375 bytes
コンパイル時間 3,498 ms
コンパイル使用メモリ 237,320 KB
実行使用メモリ 24,336 KB
平均クエリ数 562.31
最終ジャッジ日時 2023-09-24 11:49:24
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
23,568 KB
testcase_01 AC 26 ms
23,148 KB
testcase_02 AC 26 ms
24,300 KB
testcase_03 AC 26 ms
23,640 KB
testcase_04 AC 26 ms
24,336 KB
testcase_05 AC 26 ms
24,108 KB
testcase_06 AC 27 ms
23,664 KB
testcase_07 AC 27 ms
23,568 KB
testcase_08 AC 28 ms
23,460 KB
testcase_09 AC 29 ms
23,460 KB
testcase_10 AC 29 ms
23,676 KB
testcase_11 AC 28 ms
23,580 KB
testcase_12 AC 59 ms
23,460 KB
testcase_13 AC 66 ms
23,580 KB
testcase_14 AC 26 ms
23,460 KB
testcase_15 AC 27 ms
23,304 KB
testcase_16 AC 27 ms
24,276 KB
testcase_17 AC 26 ms
24,252 KB
testcase_18 AC 27 ms
23,964 KB
testcase_19 AC 27 ms
23,676 KB
testcase_20 AC 29 ms
23,592 KB
testcase_21 AC 107 ms
23,724 KB
testcase_22 AC 106 ms
24,264 KB
testcase_23 AC 59 ms
23,676 KB
testcase_24 AC 44 ms
23,724 KB
testcase_25 AC 69 ms
23,964 KB
testcase_26 AC 67 ms
23,736 KB
testcase_27 AC 44 ms
24,012 KB
testcase_28 AC 39 ms
23,460 KB
testcase_29 AC 110 ms
23,532 KB
testcase_30 AC 108 ms
24,168 KB
testcase_31 AC 27 ms
24,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// clang-format off
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

#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<int,int>;
using pli = pair<ll,int>;
using pil = pair<int,ll>;
using pll = pair<ll,ll>;
template <typename T> using vec = vector<T>;
using vi = vec<int>;
using vl = vec<ll>;
template <typename T> using que = queue<T>;
template <typename T> using deq = deque<T>;
template <typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template <typename K, typename V> using ordered_map = tree<K, V, less<K>, rb_tree_tag, tree_order_statistics_node_update>;

template <typename T> T id(T b) {return b;};
template <typename T> void chmax(T &x, T y) {if (x < y) x = y;}
template <typename T> void chmin(T &x, T y) {if (x > y) x = y;}
template <typename S, typename K> bool contains(S &s, K k) { return s.find(k) != s.end(); }
template <typename T> bool getf(T flag, size_t i) { return (flag>>i) & 1; }
template <typename T> T setf(T flag, size_t i) { return flag | (T(1)<<i); }
template <typename T> T unsetf(T flag, size_t i) { return flag & ~(T(1)<<i); }
void fastio() { ios_base::sync_with_stdio(false); cin.tie(nullptr); }
constexpr ll TEN(int n) { if (n == 0) return 1LL; else return 10LL*TEN(n-1); }
// clang-format on

int main() {
    fastio();

    int n, m;
    cin >> 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<vi> 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<pii> 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<vec<bool>> vis(n, vec<bool>(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;
}
0