#include using namespace std; #define int long long #define rep(i,s,n) for(int i = s;i=(s);i--) #define all(v) (v).begin(),(v).end() #define pb push_back #define fi first #define se second #define chmin(a,b) a=b #define chmax(a,b) a=b typedef long long ll; typedef pairpint; typedef vectorvint; typedef vectorvpint; typedef pair P1; typedef pair P2; typedef pairPP; static const ll maxLL = (ll)1 << 62; const ll MOD=1000000007; const ll INF=1e18; int dx[]={0,0,1,-1}; int dy[]={-1,1,0,0}; int N,K; int x[101],y[101]; int a[101]; int b[101]; signed main(){ cin.tie(0); ios::sync_with_stdio(false); cin>>N>>K; rep(i,0,K){ cin>>x[i]>>y[i]; } rep(i,1,N+1)cin>>a[i]; rep(i,0,K){ swap(a[x[i]],a[y[i]]); } vpint ans; rep(i,1,N+1)b[i]=i; rep(i,1,N+1){ rep(j,1,N+1){ if(a[i]==b[j]){ rrep(k,i+1,j+1){ ans.pb(pint(k-1,k)); swap(a[k-1],a[k]); } } } /*rep(i,1,N+1)cout<