結果

問題 No.240 ナイト散歩
ユーザー not_522
提出日時 2015-08-04 11:06:03
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 1,556 ms
コンパイル使用メモリ 170,416 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 21:01:58
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
  set<tuple<int, int>> s;
  s.insert(make_tuple(0, 0));
  const int dy[] = {-2, -2, -1, -1, 1, 1, 2, 2};
  const int dx[] = {-1, 1, -2, 2, -2, 2, -1, 1};
  for (int i = 0; i < 3; ++i) {
    auto ss = s;
    for (auto p : s) {
      for (int k = 0; k < 8; ++k) {
        ss.insert(make_tuple(get<0>(p) + dy[k], get<1>(p) + dx[k]));
      }
    }
    s = ss;
  }
  int x, y;
  cin >> x >> y;
  cout << (s.count(make_tuple(x, y)) ? "YES" : "NO") << endl;
}
0