結果

問題 No.240 ナイト散歩
ユーザー ohreitetsuohreitetsu
提出日時 2018-05-26 20:12:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,291 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 72,148 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-11 03:43:04
合計ジャッジ時間 2,077 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
typedef long long LL;
int X,Y;
bool Check(vector<pair<int,int>> &myVec,int x,int y)
{
	myVec.push_back(make_pair(x-2,y-1));
	myVec.push_back(make_pair(x-2,y+1));
	myVec.push_back(make_pair(x-1,y-2));
	myVec.push_back(make_pair(x-1,y+2));
	myVec.push_back(make_pair(x+1,y-2));
	myVec.push_back(make_pair(x+1,y+2));
	myVec.push_back(make_pair(x+2,y-1));
	myVec.push_back(make_pair(x+2,y+1));
	int i;
	for (i=0;i<myVec.size();i++){
		if (myVec[i].first==X && myVec[i].second==Y){
			myVec.clear();
			cout<<"YES"<<endl;
			return true;
		}
	}
	return false;
}
bool canGoTo(int x,int y)
{
	if (x==X && y==Y){
		cout<<"YES"<<endl;
		return true;
	}
	vector<pair<int,int>> myVec1;
	bool canGo=Check(myVec1,x,y);
	if (canGo){
		return true;
	}
	vector<pair<int,int>> myVec2;
	int i;
	for (i=0;i<myVec1.size();i++){
		canGo=Check(myVec2,myVec1[i].first,myVec1[i].second);
		if (canGo==true){
			return true;
		}	
	}
	vector<pair<int,int>> myVec3;
	for (i=0;i<myVec2.size();i++){
		canGo=Check(myVec3,myVec2[i].first,myVec2[i].second);
		if (canGo==true){
			return true;
		}	
	}
	myVec1.clear();
	myVec2.clear();
	myVec3.clear();
	cout<<"NO"<<endl;
	return false;
}
int main(int argc, char* argv[])
{
	cin>>X>>Y;
	canGoTo(0,0);
	return 0;
}
0