結果

問題 No.429 CupShuffle
ユーザー pinikypiniky
提出日時 2016-10-08 00:06:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 1,033 bytes
コンパイル時間 1,736 ms
コンパイル使用メモリ 173,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 15:07:42
合計ジャッジ時間 3,004 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"

#define debug(x) cout<<#x<<": "<<x<<endl
#define rep(i,n) for (int i=0;i<(n);i++)
#define FOR(i,a,b) for (int i=(a);i<=(b);i++)
#define all(a) (a).begin(),(a).end()
using namespace std;
typedef vector<int> VI;
typedef vector<vector<int>> VVI;
typedef long long ll;


void solve() {
#ifdef _WIN32
	istream &cin = ifstream("input.txt");
#endif

	int n, k, x;
	cin >> n >> k >> x;

	VI v(n), v2(n);
	vector<pair<int, int>> sw(k - x);
	rep(i, n) v[i] = i;
	rep(i, x - 1) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		swap(v[a], v[b]);
	}
	char tmp;
	cin >> tmp >> tmp;

	rep(i, k - x) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		sw[i] = {a, b};
	}
	rep(i, n) {
		cin >> v2[i];
		v2[i]--;
	}

	int len = sw.size();
	rep(i, k - x) {
		swap(v2[sw[len - i - 1].first], v2[sw[len - i - 1].second]);
	}
	VI ans(0);
	rep(i, n) if (v[i] != v2[i]) ans.push_back(i);
	cout << ans[0] + 1 << " " << ans[1] + 1 << endl;
}




int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);


	solve();
	system("PAUSE");
	return 0;
}
0