結果

問題 No.429 CupShuffle
ユーザー ldsybldsyb
提出日時 2016-10-03 00:15:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 728 ms
コンパイル使用メモリ 65,320 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 11:04:05
合計ジャッジ時間 1,812 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 86 ms
6,944 KB
testcase_12 AC 81 ms
6,940 KB
testcase_13 AC 86 ms
6,940 KB
testcase_14 AC 87 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
	char drop;
	int n, k, x;
	cin >> n >> k >> x;
	int ans[2] = {-1}, a[k], b[k], c[n], cop[n];
	for(int i = 0; i < k; i++){
		if(i == x - 1){
			cin >> drop >> drop;
			a[i] = b[i] = -1;
			continue;
		}
		cin >> a[i] >> b[i];
		a[i]--; b[i]--;
	}
	for(int i = 0; i < n; i++){
		cin >> c[i];
		cop[i] = i + 1;
	}
	for(int i = 0; a[i] != -1; i++) swap(cop[a[i]], cop[b[i]]);
	for(int i = k; a[--i] != -1;) swap(c[a[i]], c[b[i]]);
	for(int i = 0; i < n; i++) if(cop[i] != c[i]) ans[ans[0] != -1] = i + 1;
	cout << ans[0] << ' ' << ans[1] << endl;
}
0