結果

問題 No.240 ナイト散歩
ユーザー syoken_desukasyoken_desuka
提出日時 2015-07-10 23:38:58
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,616 bytes
コンパイル時間 776 ms
コンパイル使用メモリ 97,704 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-16 19:29:35
合計ジャッジ時間 1,771 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,948 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 1 ms
6,940 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <array>
#include <sstream>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <ostream>
#include<complex>
#include <cmath>
#include <iostream>
#include <stack>
#include <fstream>
#include <queue>
#include <list>
#include <map>
#include <numeric>
#include <set>
#include <sstream>
#include <bitset>
#include <iomanip>
#include <string>
#include <vector>
#include <string>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define ALLOF(c) (c),begin(), (c),end()
typedef long long ll;


int main()
{ 
    set<pair<int,int>> f;
    set<pair<int,int>> s;
    set<pair<int,int>> t;
    int x,y;
    cin >> x >> y;
    if (abs(x) >= 7 || abs(y) >= 7 )
    {
        cout << "NO" << endl;
        return 0;
    }
    int vx[8] = {-2,-2,-1,-1,1,1,2,2};
    int vy[8] = {-1,1,-2,2,-2,2,-1,1};

    rep(i,8)
    {
        pair<int,int> ppp = make_pair(vx[i],vy[i]);
        f.insert(ppp);
    }
    for(set<pair<int,int>>::iterator i= f.begin(); i!= f.end(); i++)
    {
        rep(j,8)
        {
            s.insert(make_pair( i->first + vx[j],i->second + vy[j]));
        }
    }
    for(set<pair<int,int>>::iterator i= s.begin(); i!= s.end(); i++)
    {
        rep(j,8)
        {
            t.insert(make_pair(i->first + vx[j],i->second + vy[j]));
        }
    }

    if (
        ( f.find(make_pair(x,y)) != f.end() )
        || (s.find(make_pair(x,y)) != s.end())
        || (t.find(make_pair(x,y)) != t.end())
        )
    {
        cout << "YES" << endl;
        return 0;
    }
    cout << "NO" << endl;
    return 0;
}
0