結果

問題 No.482 あなたの名は
ユーザー cympfhcympfh
提出日時 2017-06-01 23:33:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-21 21:43:46
合計ジャッジ時間 5,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
13,568 KB
testcase_01 AC 91 ms
13,696 KB
testcase_02 AC 84 ms
13,824 KB
testcase_03 AC 89 ms
13,824 KB
testcase_04 AC 82 ms
13,696 KB
testcase_05 AC 84 ms
13,568 KB
testcase_06 AC 82 ms
13,824 KB
testcase_07 AC 82 ms
13,696 KB
testcase_08 AC 84 ms
13,824 KB
testcase_09 AC 83 ms
13,824 KB
testcase_10 AC 84 ms
13,696 KB
testcase_11 AC 79 ms
13,568 KB
testcase_12 AC 80 ms
13,696 KB
testcase_13 AC 80 ms
13,696 KB
testcase_14 AC 83 ms
13,824 KB
testcase_15 AC 205 ms
28,032 KB
testcase_16 AC 206 ms
28,032 KB
testcase_17 AC 208 ms
28,160 KB
testcase_18 AC 205 ms
28,032 KB
testcase_19 AC 208 ms
28,032 KB
testcase_20 AC 204 ms
28,032 KB
testcase_21 AC 206 ms
28,032 KB
testcase_22 AC 210 ms
27,904 KB
testcase_23 AC 206 ms
28,288 KB
testcase_24 AC 207 ms
28,288 KB
testcase_25 AC 202 ms
28,032 KB
testcase_26 AC 204 ms
28,288 KB
testcase_27 AC 206 ms
28,032 KB
testcase_28 AC 207 ms
28,032 KB
testcase_29 AC 211 ms
28,288 KB
testcase_30 AC 82 ms
13,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split.map(&:to_i)
ds = gets.chomp.split.map { |d| d.to_i - 1 }
dict = [nil] * 200_000
ds.each_with_index do |d, i|
  dict[d] = i
end
n.times do |i|
  next if dict[i] == i
  j = dict[i]
  k = ds[i]
  ds[i] = i
  ds[j] = k
  dict[k] = j
  dict[i] = i
  m -= 1
end
puts m >= 0 && m.even? ? :YES : :NO
0