結果
問題 | No.1588 Connection |
ユーザー | tcltk |
提出日時 | 2021-11-19 23:18:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,397 bytes |
コンパイル時間 | 277 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 104,092 KB |
平均クエリ数 | 1.00 |
最終ジャッジ日時 | 2024-06-10 10:47:37 |
合計ジャッジ時間 | 7,244 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 147 ms
103,172 KB |
testcase_01 | WA | - |
testcase_02 | AC | 148 ms
103,532 KB |
testcase_03 | AC | 146 ms
103,032 KB |
testcase_04 | AC | 144 ms
103,248 KB |
testcase_05 | AC | 146 ms
102,964 KB |
testcase_06 | AC | 151 ms
103,056 KB |
testcase_07 | AC | 146 ms
103,016 KB |
testcase_08 | AC | 146 ms
103,064 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 144 ms
103,220 KB |
testcase_15 | AC | 146 ms
102,976 KB |
testcase_16 | AC | 147 ms
103,444 KB |
testcase_17 | AC | 146 ms
103,144 KB |
testcase_18 | AC | 145 ms
103,084 KB |
testcase_19 | AC | 147 ms
103,084 KB |
testcase_20 | AC | 151 ms
103,424 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 147 ms
103,372 KB |
testcase_26 | AC | 147 ms
103,428 KB |
testcase_27 | AC | 147 ms
103,296 KB |
testcase_28 | AC | 147 ms
103,224 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#!/usr/bin/env python3 # from typing import * import sys import io import math import collections import decimal import itertools import bisect import heapq def input(): return sys.stdin.readline()[:-1] # sys.setrecursionlimit(1000000) # _INPUT = """# paste here... # """ # sys.stdin = io.StringIO(_INPUT) INF = 10**10 def input_wrapper(i, j): global query_count if Map[i][j] != -1: return Map[i][j] if query_count == 3000: return 0 query_count += 1 print(i+1, j+1) sys.stdout.flush() v = input() if v == 'Black': Map[i][j] = 1 return 1 elif v == 'White': Map[i][j] = 0 return 0 else: sys.exit() def solve(N, M): hq = [] heapq.heappush(hq, ((N-1)+(N-1), 0, 0)) while hq: d, i, j = heapq.heappop(hq) for i1, j1 in [(i-1, j), (i+1, j), (i, j-1), (i, j+1)]: if not (0 <= i1 < N and 0 <= j1 < N and Map[i1][j1] == 0): continue d1 = (N-1-i1) + (N-1-j1) v = input_wrapper(i1, j1) if v == 1: if (i1, j1) == (N-1, N-1): return'Yes' heapq.heappush(hq, (d1, i1, j1)) return 'No' N, M = map(int, input().split()) Map = [[-1] * N for _ in range(N)] Map[0][0] = 1 Map[N-1][N-1] = 1 query_count = 0 print(solve(N, M)) sys.stdout.flush()