結果
問題 | No.326 あみだますたー |
ユーザー | IL_msta |
提出日時 | 2017-01-21 09:01:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,219 bytes |
コンパイル時間 | 515 ms |
コンパイル使用メモリ | 63,580 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 08:50:52 |
合計ジャッジ時間 | 3,755 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 7 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <iostream> //#include <iomanip> #include <vector> ///////// using namespace::std; ///////// struct yokobou{ int X; int Y; }; inline void solve(){ int N,K; cin >> N >> K; vector<int> A(N); vector<int> now(N); for(int i=0;i<N;++i){ now[i] = i; } int XX,YY; for(int i=0;i<K;++i){//隣にしか移動できない。 cin >> XX >> YY; swap( now[ XX-1 ], now[ YY-1 ] ); } for(int i=0;i<N;++i){ cin >> A[i]; --A[i]; } //// vector<int> pos(N); for(int i=0;i<N;++i){ for(int j=0;j<N;++j){ if( now[i] == A[j] ){ pos[i] = j; break; } } } vector<yokobou> ans; ans.resize(0); yokobou temp; bool flag = true; while(flag){ flag = false; for(int i=0;i<N-1;++i){ if( pos[i] > pos[i+1] ){ temp.X = i; temp.Y = i+1; swap(pos[i],pos[i+1]); ans.push_back( temp ); flag = true; } } } int size = ans.size(); cout << size << endl; for(int i=0;i<size;++i){ cout << (ans[i].X + 1) << " " << (ans[i].Y + 1) << endl; } } int main(void){ std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed;//小数を10進数表示 //cout << setprecision(16);//小数をいっぱい表示する。16? solve(); return 0; }