結果

問題 No.1588 Connection
ユーザー Daniel MurphyDaniel Murphy
提出日時 2021-07-08 23:23:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,126 bytes
コンパイル時間 2,195 ms
コンパイル使用メモリ 207,392 KB
実行使用メモリ 25,220 KB
平均クエリ数 551.84
最終ジャッジ日時 2024-07-17 12:33:28
合計ジャッジ時間 5,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
24,580 KB
testcase_01 AC 24 ms
24,836 KB
testcase_02 AC 24 ms
24,836 KB
testcase_03 AC 25 ms
24,580 KB
testcase_04 AC 23 ms
24,580 KB
testcase_05 AC 24 ms
24,836 KB
testcase_06 AC 25 ms
24,848 KB
testcase_07 AC 23 ms
24,836 KB
testcase_08 AC 26 ms
24,836 KB
testcase_09 AC 26 ms
24,964 KB
testcase_10 AC 27 ms
25,220 KB
testcase_11 AC 27 ms
24,836 KB
testcase_12 AC 57 ms
24,452 KB
testcase_13 AC 62 ms
25,220 KB
testcase_14 AC 25 ms
25,064 KB
testcase_15 AC 25 ms
24,836 KB
testcase_16 AC 24 ms
24,452 KB
testcase_17 AC 23 ms
24,836 KB
testcase_18 AC 24 ms
24,836 KB
testcase_19 AC 25 ms
24,580 KB
testcase_20 AC 26 ms
24,836 KB
testcase_21 AC 103 ms
25,220 KB
testcase_22 AC 102 ms
24,836 KB
testcase_23 AC 57 ms
25,220 KB
testcase_24 AC 41 ms
24,964 KB
testcase_25 AC 64 ms
24,824 KB
testcase_26 AC 63 ms
25,220 KB
testcase_27 AC 41 ms
24,836 KB
testcase_28 AC 36 ms
24,836 KB
testcase_29 AC 99 ms
25,220 KB
testcase_30 AC 101 ms
24,964 KB
testcase_31 AC 23 ms
25,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long

const int MAXN = 505;

int dx[4] = {0, 0, -1, 1};
int dy[4] = {1, -1, 0, 0};

int vis[MAXN][MAXN];

int main(){
	ios::sync_with_stdio(0);
	cin.tie(0);

	int n, m; cin >> n >> m;
	int cnt = 0;
	int found = 1;
	bool possible = 0;
	queue<pair<int,int>> q;
	q.emplace(1,1);
	while (cnt < 2999 && !q.empty() && found < m) {
		auto cur = q.front();
		int cx = cur.first;
		int cy = cur.second;
		q.pop();
		if (vis[cx][cy] != 0) continue;
		cout << cx << " " << cy << endl;
		string s; cin >> s;
		if (s[0] == 'B') {
			vis[cx][cy] = 1;
			found++;
			if ((cx == n && cy == n) || (cx == n-1 && cy == n) || (cx == n && cy == n-1)) {
				possible=1;
				break;
			}
		} else if (s[0] == 'W') {
			vis[cx][cy] = 2;
			continue;
		} else {
			cout << "ERR" << endl;
			return 0;
		}
		cnt++;
		for (int d = 0; d < 4; ++d) {
			int nx = cx + dx[d];
			int ny = cy + dy[d];
			if (nx <= n && nx >= 1 && ny <= n && ny >= 1 && vis[nx][ny] == 0) {
				q.emplace(nx, ny);
			}
		}
	}

	if (possible) {
		cout << "Yes" << endl;
	} else {
		cout << "No\n";
	}


	return 0;
}
0