結果

問題 No.429 CupShuffle
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2016-10-02 23:42:55
言語 Ruby
(3.3.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-05-01 10:55:16
合計ジャッジ時間 3,112 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,288 KB
testcase_01 AC 73 ms
12,288 KB
testcase_02 AC 76 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 80 ms
12,032 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 77 ms
12,160 KB
testcase_08 AC 73 ms
12,160 KB
testcase_09 AC 77 ms
12,288 KB
testcase_10 AC 99 ms
13,568 KB
testcase_11 AC 307 ms
25,216 KB
testcase_12 AC 316 ms
27,392 KB
testcase_13 AC 309 ms
26,496 KB
testcase_14 AC 312 ms
26,368 KB
testcase_15 AC 75 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N,K,X=gets.split.map(&:to_i)
perms=[]
K.times{
    a,b=gets.split.map(&:to_i)
    a-=1
    b-=1
    perms.push([a,b])
}

poses1=(0...N).to_a
poses2=gets.split.map(&:to_i).map{|i| i-1}

(0...X-1).each{|i|
    #puts "test1: pre : poses1[perms[i][0]],poses1[perms[i][1]]=#{poses1[perms[i][0]]},#{poses1[perms[i][1]]},#{poses1.to_a}"
    poses1[perms[i][0]],poses1[perms[i][1]] = poses1[perms[i][1]],poses1[perms[i][0]]
    #puts "test1: post: poses1[perms[i][0]],poses1[perms[i][1]]=#{poses1[perms[i][0]]},#{poses1[perms[i][1]]},#{poses1.to_a}"
}

(K-1).downto(X).each{|i|
    #puts "test2: pre : poses2[perms[i][0]],poses2[perms[i][1]]=#{poses2[perms[i][0]]},#{poses2[perms[i][1]]},#{poses2.to_a}"
    poses2[perms[i][0]],poses2[perms[i][1]] = poses2[perms[i][1]],poses2[perms[i][0]]
    #puts "test2: post: poses2[perms[i][0]],poses2[perms[i][1]]=#{poses2[perms[i][0]]},#{poses2[perms[i][1]]},#{poses2.to_a}"
}

result=[]
(0...N).each{|j|
    if(poses1[j] != poses2[j])
        result.push(j+1)
    end
}

puts result.join(' ')
0