結果
問題 | No.240 ナイト散歩 |
ユーザー | ramia777 |
提出日時 | 2022-05-31 02:20:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,941 bytes |
コンパイル時間 | 1,111 ms |
コンパイル使用メモリ | 98,764 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-21 01:00:28 |
合計ジャッジ時間 | 4,396 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 2 ms
6,944 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,944 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,944 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,940 KB |
testcase_31 | AC | 2 ms
6,940 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | RE | - |
ソースコード
// yukicodr //No.240 //二次元可変配列 //vector <vector <int>> mass; //vector <vector <int>> memo; //vector <int> memo; //#include "stdafx.h" #include <iostream> #include <vector> #include <list>//list #include <queue> //queue #include <set> //tree #include <map> //連想配列 #include <unordered_set> //hash #include <unordered_map> //hash #include <algorithm> #include <iomanip> #include <cstring> //#include <bits/stdc++.h> using namespace std; #define FOR(x,to) for(x=0;x<to;x++) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) #define FMAX(a,b) ((a)>(b)?(a):(b)) #define FMIN(a,b) ((a)<(b)?(a):(b)) #define FCEIL(a,b) ((a)+(b)-1)/(b) typedef unsigned long long ULL; typedef signed long long SLL; //昇順 int compare_up(const int * a, const int *b) { if (*a > *b) return (1); else if (*a < *b) return (-1); return (0); } //降順 int compare_down(const int * a, const int *b) { if (*a > *b) return (-1); else if (*a < *b) return (1); return (0); } int solve(int i, ULL index_flag) { return 0; } SLL dx[8] = { -2,-2,-1,-1, 1, 1, 2, 2 }; SLL dy[8] = { -1, 1,-2, 2,-2, 2,-1, 1 }; SLL X, Y; typedef struct COORD { SLL x; SLL y; }COORD; queue<COORD> _queue; COORD a; SLL ban[20][20]; int main() { SLL k = 0; cin >> X; cin >> Y; a.x = 0; a.y = 0; ban[a.y + 10][a.x + 10] = 8; for (int j = 0; j <65; j++) { for (int i = 0; i < 8; i++) { COORD c; c.x =a.x+ dx[i]; c.y =a.y+ dy[i]; if(c.y ==0 && c.x == 0) ban[c.y + 10][c.x + 10] = 8; else ban[c.y + 10][c.x + 10] = 1; _queue.push(c); //キューに入れる } //先頭を見る a = _queue.front(); //先頭を取り除く _queue.pop(); } /* for (int y = 0;y<20;y++) { for (int x = 0; x < 20;x++) cout << ban[y][x]; cout << endl; } */ if (ban[Y+10][X+10]) cout << "YES" << endl; else cout << "NO" << endl; //getchar(); return 0; }