結果
問題 | No.429 CupShuffle |
ユーザー | ebicochineal |
提出日時 | 2016-10-23 02:24:01 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 83 ms / 2,000 ms |
コード長 | 1,052 bytes |
コンパイル時間 | 1,984 ms |
コンパイル使用メモリ | 75,112 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-23 17:48:21 |
合計ジャッジ時間 | 3,522 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 9 ms
6,816 KB |
testcase_11 | AC | 82 ms
6,820 KB |
testcase_12 | AC | 79 ms
6,816 KB |
testcase_13 | AC | 82 ms
6,816 KB |
testcase_14 | AC | 83 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <unordered_map> #include <unordered_set> #define REP(i,n) for(int i=0;i<n;++i) #define ALL(a) (a).begin(),(a).end() typedef long long int LLI; typedef unsigned long long int ULLI; using namespace std; int main() { int n, k, x; vector<int> s; cin >> n >> k >> x; for (int i = 0; i < n; ++i) { s.push_back(i + 1); } for (int i = 0; i < x -1; ++i) { int a, b; cin >> a >> b; swap(s[a - 1], s[b - 1]); } string _; cin >> _ >> _; vector<pair<int, int>> p; for (int i = 0; i < k - x; ++i) { int a, b; cin >> a >> b; pair<int, int> c(a, b); p.push_back(c); } vector<int> e; for (int i = 0; i < n; ++i) { int a; cin >> a; e.push_back(a); } reverse(ALL(p)); for (auto i : p) { swap(e[i.first - 1], e[i.second - 1]); } int ans[2], c = 0; for (int i = 0; i < n; ++i) { if (s[i] != e[i]) { ans[c++] = i + 1;} } cout << ans[0] << " " << ans[1] << endl; return 0; }