結果

問題 No.1588 Connection
ユーザー simansiman
提出日時 2021-07-20 00:05:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 198 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 33,024 KB
平均クエリ数 431.19
最終ジャッジ日時 2024-07-17 13:37:45
合計ジャッジ時間 6,116 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
28,512 KB
testcase_01 AC 112 ms
28,384 KB
testcase_02 AC 109 ms
28,896 KB
testcase_03 AC 110 ms
28,640 KB
testcase_04 AC 107 ms
28,640 KB
testcase_05 AC 106 ms
28,640 KB
testcase_06 AC 110 ms
28,256 KB
testcase_07 AC 110 ms
28,760 KB
testcase_08 AC 111 ms
28,384 KB
testcase_09 AC 110 ms
28,640 KB
testcase_10 AC 111 ms
28,896 KB
testcase_11 AC 109 ms
28,512 KB
testcase_12 AC 118 ms
28,896 KB
testcase_13 AC 127 ms
29,024 KB
testcase_14 AC 108 ms
29,152 KB
testcase_15 AC 109 ms
28,640 KB
testcase_16 AC 110 ms
28,768 KB
testcase_17 AC 115 ms
29,280 KB
testcase_18 AC 110 ms
28,896 KB
testcase_19 AC 110 ms
29,280 KB
testcase_20 AC 115 ms
32,224 KB
testcase_21 AC 197 ms
32,608 KB
testcase_22 AC 198 ms
33,024 KB
testcase_23 AC 143 ms
29,152 KB
testcase_24 AC 127 ms
28,896 KB
testcase_25 AC 172 ms
32,864 KB
testcase_26 AC 170 ms
32,608 KB
testcase_27 AC 135 ms
28,768 KB
testcase_28 AC 131 ms
29,056 KB
testcase_29 AC 191 ms
29,152 KB
testcase_30 AC 171 ms
29,280 KB
testcase_31 AC 108 ms
28,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, M = gets.split.map(&:to_i)

def query(a, b)
  STDOUT.puts("%d %d" % [a, b])
  STDOUT.flush
  gets.chomp
end

G = Array.new(N) { Array.new(N, 0) }

visited = Array.new(N) { Array.new(N, false) }

DY = [-1, 0, 1, 0]
DX = [0, 1, 0, -1]

def dfs(y, x, visited)
  visited[y][x] = true

  if y == N - 1 && x == N - 1
    puts 'Yes'
    exit
  end

  4.times do |i|
    ny = y + DY[i]
    nx = x + DX[i]

    next if ny < 0 || nx < 0 || N <= ny || N <= nx
    next if visited[ny][nx]

    res = query(ny + 1, nx + 1)

    if res == 'Black'
      dfs(ny, nx, visited)
    end
  end
end

dfs(0, 0, visited)

puts 'No'
0