結果

問題 No.429 CupShuffle
ユーザー gahougahou
提出日時 2016-10-28 17:44:14
言語 Python2
(2.7.18)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 594 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 34,684 KB
最終ジャッジ日時 2024-05-03 07:17:50
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
6,400 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 12 ms
6,144 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 13 ms
6,272 KB
testcase_05 AC 11 ms
6,272 KB
testcase_06 AC 15 ms
6,272 KB
testcase_07 AC 15 ms
6,272 KB
testcase_08 AC 11 ms
6,144 KB
testcase_09 AC 14 ms
6,272 KB
testcase_10 AC 54 ms
8,832 KB
testcase_11 AC 512 ms
34,672 KB
testcase_12 AC 459 ms
34,516 KB
testcase_13 AC 512 ms
34,684 KB
testcase_14 AC 468 ms
34,680 KB
testcase_15 AC 11 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,X = map(int, raw_input().split())
l1 = [0] * N
for i in xrange(1, N+1): l1[i-1] = i
b=[]
a=[]
for i in xrange(1, K+1):
  A,B=raw_input().split()
  if i<X:
    b.append([int(A)-1, int(B)-1])
  elif X<i:
    a.append([int(A)-1, int(B)-1])
l2 = map(int, raw_input().split())

for i in xrange(len(b)):
  tmp = l1[b[i][0]]
  l1[b[i][0]] = l1[b[i][1]]
  l1[b[i][1]] = tmp
for i in xrange(len(a)):
  tmp = l2[a[len(a)-1-i][0]]
  l2[a[len(a)-1-i][0]] = l2[a[len(a)-1-i][1]]
  l2[a[len(a)-1-i][1]] = tmp
ans = []
for i in xrange(len(l1)):
  if(l1[i]!=l2[i]): ans.append(str(i+1))
print " ".join(ans)
0