結果

問題 No.429 CupShuffle
ユーザー shi-moshi-mo
提出日時 2016-10-03 00:15:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-06-08 02:26:12
合計ジャッジ時間 3,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
12,288 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 90 ms
12,288 KB
testcase_03 AC 78 ms
12,032 KB
testcase_04 AC 82 ms
12,288 KB
testcase_05 AC 79 ms
12,288 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 85 ms
12,288 KB
testcase_08 AC 82 ms
12,416 KB
testcase_09 AC 83 ms
12,160 KB
testcase_10 AC 103 ms
13,056 KB
testcase_11 AC 305 ms
25,344 KB
testcase_12 AC 304 ms
24,960 KB
testcase_13 AC 307 ms
25,600 KB
testcase_14 AC 307 ms
24,960 KB
testcase_15 AC 79 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - x
Syntax OK

ソースコード

diff #

n, k, x = gets.split.map(&:to_i)
swap = []
k.times do
  swap <<  gets.split.map(&:to_i)
end
c = gets.split.map(&:to_i)

s = (1..n).to_a
k.times do
  a, b = swap.shift
  break if 0 == a
  t = s[a-1]
  s[a-1] = s[b-1]
  s[b-1] = t
end

swap.reverse.each do |a, b|
  t = c[a-1]
  c[a-1] = c[b-1]
  c[b-1] = t
end

ax = []
n.times do |i|
  next if c[i] == s[i]
  ax << i+1
end
puts ax.sort.join(' ')
0