#include #define INIT std::ios::sync_with_stdio(false);std::cin.tie(0); // VAR(int, x); #define VAR(type, ...)type __VA_ARGS__;Scan(__VA_ARGS__); template void Scan(T& t){std::cin >> t;} templatevoid Scan(First& first,Rest&...rest){std::cin>>first;Scan(rest...);} #define OUT(d) std::cout<<(d); #define FOUT(n, d) std::cout< c(n);for(auto& i:c)std::cin>>i; #define MAT(type, c, m, n) std::vector> c(m, std::vector(n));for(auto& r:c)for(auto& i:r)std::cin>>i; #define ALL(a) (a).begin(),(a).end() #define FOR(i, a, b) for(int i=(a);i<(b);++i) #define RFOR(i, a, b) for(int i=(b)-1;i>=(a);--i) #define REP(i, n) for(int i=0;i=0;--i) #define PAIR std::pair #define IN(a0, y, a1, b0, x, b1) (a0<=y && y(end-start).count();std::cerr<<"[Time:"< base(n); REP(i, n){ base[i] = i; } REP(i, k){ int x, y; std::cin >> x >> y; std::swap(base[x-1], base[y-1]); } VEC(int, a, n); std::vector invA(n); REP(i, n){ --a[i]; invA[a[i]] = i; } std::vector res; RREP(i, n-1){ REP(j, i+1){ if(base[j]==invA[i+1]){ res.emplace_back(j+1); std::swap(base[j], base[j+1]); } } } OUT(res.size())BR; REP(i, res.size()){ OUT(res[i])SP OUT(res[i]+1)BR; } } ())); return 0; }