結果

問題 No.240 ナイト散歩
ユーザー kichirb3
提出日時 2018-03-17 12:00:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,193 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 00:12:00
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.240 ナイト散歩
// https://yukicoder.me/problems/no/240
//

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <utility>
#include <queue>
using namespace std;

string solve(int gx, int gy, int step);


int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int X, Y;
    cin >> X >> Y;
    string ans = solve(X, Y, 3);
    cout << ans << endl;
}

struct Pos {
    int x;
    int y;
};


string solve(int gx, int gy, int step) {
    vector<Pos> moves {{-2, -1}, {-2, 1}, {-1, -2}, {-1, 2}, {1, -2}, {1, 2}, {2, -1}, {2, 1}};
    int cx = 0;
    int cy = 0;

    deque<pair<Pos, int>> que;
    que.push_back(make_pair(Pos{cx, cy}, step));
    while (!que.empty()) {
        pair<Pos, int> t = que.front();
        que.pop_front();
        cx = t.first.x;
        cy = t.first.y;
        step = t.second;
        if (step > 0) {
            for (auto d: moves) {
                int nx = cx + d.x;
                int ny = cy + d.y;
                if (nx == gx && ny == gy)
                    return "YES";
                que.push_back(make_pair(Pos{nx, ny}, step - 1));
            }
        }
    }
    return "NO";
}
0