結果
問題 | No.1588 Connection |
ユーザー | yakki |
提出日時 | 2021-07-08 23:43:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
QLE
(最初)
|
実行時間 | - |
コード長 | 1,714 bytes |
コンパイル時間 | 1,343 ms |
コンパイル使用メモリ | 129,788 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 308.25 |
最終ジャッジ日時 | 2024-07-17 12:39:15 |
合計ジャッジ時間 | 4,195 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,824 KB |
testcase_01 | AC | 23 ms
24,916 KB |
testcase_02 | AC | 23 ms
24,976 KB |
testcase_03 | AC | 24 ms
24,964 KB |
testcase_04 | AC | 24 ms
25,076 KB |
testcase_05 | AC | 23 ms
25,220 KB |
testcase_06 | AC | 24 ms
24,836 KB |
testcase_07 | AC | 24 ms
24,836 KB |
testcase_08 | AC | 24 ms
24,580 KB |
testcase_09 | AC | 26 ms
24,580 KB |
testcase_10 | AC | 25 ms
24,836 KB |
testcase_11 | AC | 27 ms
24,580 KB |
testcase_12 | AC | 55 ms
25,220 KB |
testcase_13 | AC | 54 ms
24,964 KB |
testcase_14 | AC | 24 ms
24,836 KB |
testcase_15 | AC | 24 ms
24,580 KB |
testcase_16 | AC | 24 ms
24,836 KB |
testcase_17 | AC | 24 ms
24,580 KB |
testcase_18 | AC | 24 ms
24,964 KB |
testcase_19 | AC | 24 ms
24,964 KB |
testcase_20 | AC | 25 ms
24,836 KB |
testcase_21 | AC | 72 ms
24,580 KB |
testcase_22 | AC | 88 ms
24,952 KB |
testcase_23 | AC | 50 ms
25,220 KB |
testcase_24 | AC | 36 ms
24,836 KB |
testcase_25 | AC | 49 ms
24,580 KB |
testcase_26 | AC | 55 ms
24,580 KB |
testcase_27 | AC | 38 ms
24,580 KB |
testcase_28 | AC | 33 ms
24,952 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 23 ms
24,556 KB |
ソースコード
#include<iostream> #include<string> #include<vector> #include<algorithm> #include<bitset> #include<set> #include<map> #include<stack> #include<queue> #include<deque> #include<list> #include<iomanip> #include<cmath> #include<cstring> #include<functional> #include<cstdio> #include<cstdlib> #include<numeric> #include<ctime> //#include<atcoder/all> using namespace std; //using namespace atcoder; #define repr(i, a, b) for (int i = (int)(a); i < (int)(b); i++) #define rep(i, n) repr(i, 0, n) #define INF 2e9 #define MOD 1000000007 //#define MOD 998244353 #define LINF (long long)4e18 #define jck 3.141592 #define PI acos(-1.0) const double EPS = 1e-10; using ll = long long; using Pi = pair<int,int>; using Pl = pair<ll,ll>; //using mint = modint998244353; int dh[] = {1,0,-1,0}; int dw[] = {0,1,0,-1}; int main(){ int n,m; cin >> n >> m; queue<Pi> q; q.push({2,1}); q.push({1,2}); vector<vector<bool>> used(n,vector<bool>(n)); used[0][0] = true; used[0][1] = true; used[1][0] = true; m--; while(!q.empty()){ auto u = q.front(); int u1 = u.first; int u2 = u.second; if(u1 == n and u2 == n){ cout << "Yes" << endl; return 0; } q.pop(); if(2*n-u1-u2+1 > m) continue; cout << u1 << " " << u2 << endl; string t; cin >> t; if(t == "White") continue; m--; rep(i,2){ int nu1 = u1+dh[i]; int nu2 = u2+dw[i]; if(nu1 <= n and nu2 <= n){ if(used[nu1-1][nu2-1]) continue; used[nu1-1][nu2-1] = true; q.push({nu1,nu2}); } } } cout << "No" << endl; }