結果
問題 | No.429 CupShuffle |
ユーザー | taba |
提出日時 | 2017-05-18 20:39:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 1,021 bytes |
コンパイル時間 | 940 ms |
コンパイル使用メモリ | 114,484 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-18 19:11:53 |
合計ジャッジ時間 | 2,314 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 5 ms
6,940 KB |
testcase_11 | AC | 31 ms
6,940 KB |
testcase_12 | AC | 30 ms
6,940 KB |
testcase_13 | AC | 31 ms
6,944 KB |
testcase_14 | AC | 31 ms
6,944 KB |
testcase_15 | AC | 1 ms
6,940 KB |
ソースコード
#include <cstdio> #include <cstring> #include <cmath> #include <cassert> #include <random> #include <vector> #include <algorithm> #include <array> #include <functional> #include <utility> #include <regex> #include <tuple> #include <map> using namespace std; int main(){ int n,k,x; -scanf("%d%d%d",&n,&k,&x); vector<array<int,2>> ab(k); for(int i=0;i<k;i++){ char as[10],bs[10]; -scanf("%s %s",as,bs); int a,b; if(as[0]=='?'){ a=b=-1; }else{ a=stoi(as)-1; b=stoi(bs)-1; } ab[i][0]=a; ab[i][1]=b; } vector<int> c(n); for(int i=0;i<n;i++){ -scanf("%d",&c[i]); } vector<int> start(n); for(int i=0;i<n;i++){ start[i]=i+1; } for(int i=0;i<x;i++){ swap(start[ab[i][0]],start[ab[i][1]]); } for(int i=k-1;i>=x;i--){ swap(c[ab[i][0]],c[ab[i][1]]); } vector<int> abx; for(int i=0;i<n;i++){ //printf("%d %d\n",start[i],c[i]); if(start[i]!=c[i]){ abx.push_back(i+1); } } //printf("%lu\n",abx.size()); assert(abx.size()==2); printf("%d %d\n",abx[0],abx[1]); return 0; }