結果
問題 | No.326 あみだますたー |
ユーザー | IL_msta |
提出日時 | 2017-01-21 08:41:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,025 bytes |
コンパイル時間 | 874 ms |
コンパイル使用メモリ | 101,468 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 08:50:25 |
合計ジャッジ時間 | 3,808 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 8 ms
5,376 KB |
testcase_09 | AC | 8 ms
5,376 KB |
testcase_10 | AC | 9 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 | - |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <iomanip> #include <sstream> #include <algorithm> #include <cmath> #include <string> #include <cstring> #include <vector> #include <valarray> #include <array> #include <queue> #include <complex> #include <set> #include <map> #include <stack> #include <list> #include<cassert>//assert(); #include <fstream> ///////// #define REP(i, x, n) for(int i = x; i < n; i++) #define rep(i,n) REP(i,0,n) #define P(p) cout<<(p)<<endl; #define PII pair<int,int> ///////// typedef long long LL; typedef long double LD; typedef unsigned long long ULL; ///////// using namespace::std; ///////// /////////////////////////////////////////////////////////// // 最大公約数 template<class T> inline T gcd(T a, T b){return b == 0 ? a : gcd(b, a % b);} // 最小公倍数 template<class T> inline T lcm(T a, T b){return a * b / gcd(a, b);} //////////////////////////////// struct XY{ int X; int Y; }; inline void solve(){ int N,K; cin>>N; cin>>K; vector<XY> xy(K); vector<int> A(N); vector<int> now(N); for(int i=0;i<N;++i){ now[i] = i; } for(int i=0;i<K;++i){//隣にしか移動できない。 cin >> xy[i].X >> xy[i].Y; swap( now[ xy[i].X-1 ], now[ xy[i].Y-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<XY> ans; XY 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; }