結果

問題 No.1588 Connection
ユーザー tcltk
提出日時 2021-11-19 23:25:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,549 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 314,604 KB
平均クエリ数 492.16
最終ジャッジ日時 2025-01-01 22:24:58
合計ジャッジ時間 13,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 1
other AC * 19 WA * 10 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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, black_count

    if Map[i][j] != -1:
        return Map[i][j]
    
    if query_count == 3000:
        return 0
    query_count += 1

    if black_count == M:
        return 0

    print(i+1, j+1)
    sys.stdout.flush()
    v = input()
    if v == 'Black':
        black_count += 1
        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-1)+(N-1), 1, 0))
    heapq.heappush(hq, ((N-1)+(N-1-1), 0, 1))
    while hq:
        d, i, j = heapq.heappop(hq)
        v = input_wrapper(i, j)
        if v == 1:
            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] == -1):
                    continue
                d1 = (N-1-i1) + (N-1-j1)
                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
black_count = 0
print(solve(N, M))
sys.stdout.flush()
0