結果
問題 | No.429 CupShuffle |
ユーザー | Yut176 |
提出日時 | 2016-10-02 22:51:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 85 ms / 2,000 ms |
コード長 | 975 bytes |
コンパイル時間 | 564 ms |
コンパイル使用メモリ | 67,312 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 13:24:20 |
合計ジャッジ時間 | 1,631 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 10 ms
5,248 KB |
testcase_11 | AC | 83 ms
5,248 KB |
testcase_12 | AC | 78 ms
5,248 KB |
testcase_13 | AC | 85 ms
5,248 KB |
testcase_14 | AC | 82 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cmath> #include <vector> #include <algorithm> using namespace std; int main(){ int n, k, x; cin >> n >> k >> x; vector<int> a1(x-1); vector<int> b1(x-1); vector<int> a2(k-x); vector<int> b2(k-x); char q[2]; for(int i=0; i<x-1; i++) cin >> a1[i] >> b1[i]; cin >> q[0] >> q[1]; for(int i=0; i<k-x; i++) cin >> a2[i] >> b2[i]; vector<int> c(n); vector<int> t(n); for(int i=0; i<n; i++){ cin >> c[i]; t[i] = i+1; } for(int i=0; i<x-1; i++){ int tmp; tmp = t[ a1[i]-1 ]; t[ a1[i]-1 ] = t[ b1[i]-1 ]; t[ b1[i]-1 ] = tmp; } for(int i=k-x-1; i>=0; i--){ int tmp; tmp = c[ a2[i]-1 ]; c[ a2[i]-1 ] = c[ b2[i]-1 ]; c[ b2[i]-1 ] = tmp; } int ans[2]; int j=0; for(int i=0; i<n; i++){ if( t[i] != c[i] ){ ans[j] = i+1; j++; if( j == 2 ) break; } } if( ans[0] < ans[1] ) cout << ans[0] << " " << ans[1] << endl; else cout << ans[1] << " " << ans[0] << endl; return 0; }