結果

問題 No.1779 Magical Swap
ユーザー simansiman
提出日時 2021-12-08 07:13:34
言語 Ruby
(3.3.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 540 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,032 KB
最終ジャッジ日時 2024-07-16 07:39:32
合計ジャッジ時間 4,430 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,416 KB
testcase_01 AC 80 ms
12,416 KB
testcase_02 AC 94 ms
12,288 KB
testcase_03 AC 84 ms
12,160 KB
testcase_04 AC 139 ms
23,680 KB
testcase_05 AC 109 ms
15,872 KB
testcase_06 AC 116 ms
15,872 KB
testcase_07 AC 133 ms
22,144 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 108 ms
15,360 KB
testcase_10 AC 195 ms
26,624 KB
testcase_11 AC 136 ms
17,112 KB
testcase_12 AC 99 ms
14,464 KB
testcase_13 AC 167 ms
23,040 KB
testcase_14 AC 203 ms
28,032 KB
testcase_15 AC 353 ms
12,288 KB
testcase_16 AC 151 ms
25,856 KB
testcase_17 AC 168 ms
13,568 KB
testcase_18 AC 80 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n = gets.to_i
  a = gets.split.map(&:to_i)
  b = gets.split.map(&:to_i)

  if a[0] != b[0] || a.sort != b.sort
    puts 'No'
  else
    i = 3
    ok = true
    checked = Array.new(n + 1, false)

    while i <= n && ok
      if not checked[i]
        if 2 * i <= n
          i.step(n, i) do |j|
            checked[j] = true
          end
        end

        ok = false if !checked[i] && a[i - 1] != b[i - 1]
      end

      i += 2
    end

    if ok
      puts 'Yes'
    else
      puts 'No'
    end
  end
end
0