結果
問題 | No.1588 Connection |
ユーザー | MZKi |
提出日時 | 2021-07-08 23:54:36 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
QLE
(最初)
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 2,675 ms |
コンパイル使用メモリ | 161,124 KB |
実行使用メモリ | 25,220 KB |
平均クエリ数 | 474.25 |
最終ジャッジ日時 | 2024-07-17 12:43:11 |
合計ジャッジ時間 | 4,552 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
24,836 KB |
testcase_01 | AC | 23 ms
24,836 KB |
testcase_02 | AC | 24 ms
24,964 KB |
testcase_03 | AC | 23 ms
24,836 KB |
testcase_04 | AC | 23 ms
25,220 KB |
testcase_05 | AC | 24 ms
24,580 KB |
testcase_06 | AC | 24 ms
24,580 KB |
testcase_07 | AC | 23 ms
24,836 KB |
testcase_08 | AC | 25 ms
24,580 KB |
testcase_09 | AC | 27 ms
24,964 KB |
testcase_10 | AC | 27 ms
24,836 KB |
testcase_11 | AC | 27 ms
24,580 KB |
testcase_12 | AC | 58 ms
25,220 KB |
testcase_13 | AC | 65 ms
25,220 KB |
testcase_14 | AC | 24 ms
24,964 KB |
testcase_15 | AC | 25 ms
24,836 KB |
testcase_16 | AC | 23 ms
24,836 KB |
testcase_17 | AC | 22 ms
24,580 KB |
testcase_18 | AC | 22 ms
24,580 KB |
testcase_19 | AC | 23 ms
25,220 KB |
testcase_20 | AC | 24 ms
24,836 KB |
testcase_21 | AC | 115 ms
24,964 KB |
testcase_22 | AC | 116 ms
25,220 KB |
testcase_23 | AC | 61 ms
24,836 KB |
testcase_24 | AC | 42 ms
24,836 KB |
testcase_25 | AC | 72 ms
25,136 KB |
testcase_26 | AC | 71 ms
24,836 KB |
testcase_27 | AC | 43 ms
25,208 KB |
testcase_28 | AC | 38 ms
24,836 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 22 ms
25,196 KB |
ソースコード
#include <bits/stdc++.h> template<class T> inline bool chmin(T&a, T b){if(a > b){a = b; return true;}else{return false;}} template<class T> inline bool chmax(T&a, T b){if(a < b){a = b; return true;}else{return false;}} #define ll long long #define double long double #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,n) for(int i=1;i<=(n);i++) #define mod (ll)(1e9+7) #define inf (ll)(3e18+7) #define eps (double)(1e-9) #define pi (double) acos(-1) #define all(x) x.begin(),x.end() #define rall(x) x.rbegin(),x.rend() using namespace std; int ask(int a, int b){ string ret; cout << a+1 << " " << b+1 << endl; cin >> ret; assert(ret != "-1"); return (ret == "Black" ? 1 : 0); } int dx[4] = {0, 0, 1, -1}; int dy[4] = {1, -1, 0, 0}; int main(){ int n, m; cin >> n >> m; bool dp[n][n]; memset(dp, false, sizeof(dp)); dp[0][0] = true; rep(x, n)rep(y, n){ if(!dp[x][y])continue; rep(i, 4){ int nx = x + dx[i]; int ny = y + dy[i]; if(nx < 0 || nx >= n || ny < 0 || ny >= n)continue; if(dp[nx][ny])continue; if(ask(nx, ny))dp[nx][ny] = true; } } cout << (dp[n-1][n-1] ? "Yes" : "No") << endl; }