結果

問題 No.1647 Travel in Mitaru city 2
ユーザー yuruhiyayuruhiya
提出日時 2021-08-19 15:56:37
言語 Crystal
(1.11.2)
結果
AC  
実行時間 109 ms / 2,500 ms
コード長 850 bytes
コンパイル時間 10,333 ms
コンパイル使用メモリ 297,056 KB
実行使用メモリ 33,152 KB
最終ジャッジ日時 2024-10-13 03:32:53
合計ジャッジ時間 17,037 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 3 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 4 ms
5,248 KB
testcase_08 AC 87 ms
29,952 KB
testcase_09 AC 84 ms
28,288 KB
testcase_10 AC 97 ms
29,812 KB
testcase_11 AC 70 ms
25,984 KB
testcase_12 AC 77 ms
25,856 KB
testcase_13 AC 78 ms
25,984 KB
testcase_14 AC 90 ms
30,336 KB
testcase_15 AC 88 ms
30,208 KB
testcase_16 AC 80 ms
29,056 KB
testcase_17 AC 74 ms
25,984 KB
testcase_18 AC 79 ms
26,596 KB
testcase_19 AC 86 ms
30,208 KB
testcase_20 AC 87 ms
28,988 KB
testcase_21 AC 88 ms
30,720 KB
testcase_22 AC 92 ms
32,256 KB
testcase_23 AC 94 ms
32,384 KB
testcase_24 AC 89 ms
29,312 KB
testcase_25 AC 93 ms
30,336 KB
testcase_26 AC 92 ms
32,384 KB
testcase_27 AC 102 ms
32,512 KB
testcase_28 AC 89 ms
32,896 KB
testcase_29 AC 92 ms
32,896 KB
testcase_30 AC 94 ms
30,720 KB
testcase_31 AC 104 ms
33,152 KB
testcase_32 AC 94 ms
31,104 KB
testcase_33 AC 83 ms
30,080 KB
testcase_34 AC 101 ms
33,024 KB
testcase_35 AC 87 ms
30,336 KB
testcase_36 AC 101 ms
32,896 KB
testcase_37 AC 95 ms
32,896 KB
testcase_38 AC 109 ms
29,184 KB
testcase_39 AC 89 ms
27,008 KB
testcase_40 AC 87 ms
29,056 KB
testcase_41 AC 88 ms
27,520 KB
testcase_42 AC 86 ms
29,312 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 15 ms
14,208 KB
testcase_45 AC 75 ms
24,704 KB
testcase_46 AC 89 ms
24,704 KB
testcase_47 AC 84 ms
24,832 KB
testcase_48 AC 81 ms
24,960 KB
testcase_49 AC 75 ms
24,704 KB
testcase_50 AC 73 ms
24,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Solve
  def initialize
    h, w, n = read_line.split.map(&.to_i)
    @xy = Array(Array(Int32)).new(n) { read_line.split.map(&.to_i.pred) }
    @graph = Array(Array({Int32, Int32})).new(h + w) { [] of {Int32, Int32} }
    @xy.each_with_index do |(x, y), i|
      @graph[x] << {h + y, i}
      @graph[h + y] << {x, i}
    end
    @cycle = [] of Int32
    @index = Array(Int32?).new(h + w, nil)
  end

  def dfs(v, p)
    if i = @index[v]
      ans = @cycle[i..]
      ans.rotate! if @xy[ans[0]][1] != @xy[ans[1]][1]
      puts ans.size, ans.join(' ', &.succ)
      exit
    end
    @index[v] = @cycle.size
    @graph[v].each do |u, i|
      next if u == p
      @cycle.push i
      dfs(u, v)
      @cycle.pop
    end
  end

  def solve
    @graph.size.times do |i|
      dfs(i, p) if @index[i].nil?
    end
    puts -1
  end
end

Solve.new.solve
0