結果
問題 | No.1588 Connection |
ユーザー | merom686 |
提出日時 | 2021-07-09 00:10:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
QLE
(最初)
|
実行時間 | - |
コード長 | 1,438 bytes |
コンパイル時間 | 2,189 ms |
コンパイル使用メモリ | 208,116 KB |
実行使用メモリ | 25,476 KB |
平均クエリ数 | 425.06 |
最終ジャッジ日時 | 2024-07-17 12:46:54 |
合計ジャッジ時間 | 5,475 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 27 ms
24,580 KB |
testcase_01 | AC | 22 ms
24,836 KB |
testcase_02 | AC | 22 ms
24,964 KB |
testcase_03 | AC | 22 ms
25,220 KB |
testcase_04 | AC | 22 ms
24,964 KB |
testcase_05 | AC | 22 ms
24,964 KB |
testcase_06 | AC | 23 ms
24,836 KB |
testcase_07 | AC | 23 ms
25,220 KB |
testcase_08 | AC | 23 ms
24,964 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 25 ms
24,836 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 22 ms
25,220 KB |
testcase_15 | AC | 23 ms
24,964 KB |
testcase_16 | AC | 22 ms
24,964 KB |
testcase_17 | AC | 24 ms
24,836 KB |
testcase_18 | AC | 22 ms
24,836 KB |
testcase_19 | AC | 23 ms
25,220 KB |
testcase_20 | AC | 25 ms
25,220 KB |
testcase_21 | AC | 102 ms
25,220 KB |
testcase_22 | AC | 101 ms
25,220 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 64 ms
24,964 KB |
testcase_26 | AC | 64 ms
24,836 KB |
testcase_27 | AC | 40 ms
24,580 KB |
testcase_28 | AC | 25 ms
24,964 KB |
testcase_29 | AC | 100 ms
24,836 KB |
testcase_30 | AC | 101 ms
25,220 KB |
testcase_31 | AC | 23 ms
24,556 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int a[502][502]; int main() { int n, m; cin >> n >> m; for (int i = 0; i <= n + 1; i++) { for (int j = 0; j <= n + 1; j++) { a[i][j] = -1; } } for (int i = 1; i <= n; i++) { for (int j = 1; j <= n; j++) { a[i][j] = 0; } } a[1][1] = 1; a[n][n] = 1; m -= 2; queue<pair<int, int>> q; q.push({ 1, 1 }); int l = 0; while (!q.empty() && m > 0) { auto p = q.back(); q.pop(); pair<int, int> d[4] = { { 0, 1 }, { 1, 0 }, { -1, 0 }, { 0, -1 } }; for (int k = 0; k < 4; k++) { auto t = p; t.first += d[k].first; t.second += d[k].second; int &x = a[t.first][t.second]; if (x != 0) continue; if (l == 3000) break; cout << t.first << ' ' << t.second << endl; l++; string s; cin >> s; if (s[0] == '-') { exit(0); } x = s[0] == 'B' ? 1 : 2; if (x == 1) { if ((t.first == n - 1 && t.second == n) || (t.first == n && t.second == n - 1)) { cout << "Yes" << endl; exit(0); } q.push(t); m--; } } } cout << "No" << endl; return 0; }