結果
問題 | No.240 ナイト散歩 |
ユーザー | wonda_t_coffee |
提出日時 | 2020-03-29 19:07:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,323 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 113,744 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 19:28:57 |
合計ジャッジ時間 | 1,965 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cmath> #include <ctime> #include <cstring> #include <functional> #include <iostream> #include <iomanip> #include <limits> #include <map> #include <queue> #include <set> #include <stack> #include <string> #include <regex> #include <vector> #define fix(n) cout<<fixed<<setprecision(n) #define rep(i,n) for (int i = 0; i < (n); ++i) #define all(a) (a).begin(), (a).end() #define sort(a) sort(all(a)) #define uniq(a) sort(a);(a).erase(unique(all(a), (a).end()) #define reverse(a) reverse(all(a)) #define ctos(c) string(1, (c)) #define out(d) cout << (d) #define outl(d) std::cout<<(d)<<"\n" #define YES() cout << "YES" << endl #define NO() cout << "NO" << endl #define Yes() cout << "Yes" << endl #define No() cout << "No" << endl #define ceil(x, y) ((x + y - 1) / (y)) #define debug(x) cerr << #x << ": " << (x) << '\n' #define debug2(x, y) cerr << #x << ": " << (x) << ", " << #y << ": " << (y) << '\n' #define debug3(x, y, z) cerr << #x << ": " << (x) << ", " << #y << ": " << (y) << ", " << #z << ": " << (z) << '\n' #define dbg(v) for (size_t _ = 0; _ < v.size(); ++_){ cerr << #v << "[" << _ << "] : " << v[_] << '\n'; } #define pb push_back #define fst first #define int long long #define INF __LONG_LONG_MAX__ using namespace std; using ll = long long; using ld = long double; using P = pair<ll,ll>; const ll MOD = 1000000007; // 10^9 + 7 const int dx[8] = {-2,-2,-1,-1, 1,1,2, 2}; const int dy[8] = {-1, 1, 2,-2,-2,2,1,-1}; void solve() { ll x, y; cin >> x >> y; queue<ll> qx, qy, qc; qx.push(0); qy.push(0); qc.push(0); while (!qx.empty()) { ll xi = qx.front(); qx.pop(); ll yi = qy.front(); qy.pop(); ll ci = qc.front(); qc.pop(); // debug3(xi, yi, ci); if (xi == x && yi == y) { YES(); return; } if (ci == 3) continue; for (int i = 0; i < 8; i++) { int nx = xi + dx[i]; int ny = yi + dy[i]; qx.push(nx); qy.push(ny); qc.push(ci + 1); } } No(); } signed main() { cin.tie(0); ios::sync_with_stdio(false); srand((unsigned)time(NULL)); fix(12); solve(); }