#include #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; using ll=long long; using ld=long double; using ull=unsigned long long; using i128 = __int128_t; #define vs vector #define rep(i,n) for(int i=0;i=0;i--) #define rep3(i,a,b) for(ll i=a;i<=ll(b);i++) #define rep4(i,a,b) for(ll i=a;i>=ll(b);i--) #define forv(i,V) for(const auto& i:V) #define all(x) x.begin(),x.end() #define fi first #define se second #define SIZE(x) int(x.size()) constexpr ll mod=998244353; //constexpr ll mod=1000000007; #define pi 3.14159265358979323 #define INF32 2147483647 #define INF64 9223372036854775807 #define faster ios::sync_with_stdio(false);std::cin.tie(nullptr) #define pii pair #define pll pair #define pb push_back #define eb emplace_back #define mp make_pair #define rev reverse #define vi vector #define vll vector #define vpi vector> #define vpll vector> #define vvi vector> #define vvll vector> #define prq priority_queue #define lb lower_bound #define ub upper_bound #define popcnt __builtin_popcountll #define TLE while(true); #define RE assert(false); #define MLE vector>> mle_mle(400,vector>(1000,vector(1000))); const string YESNO[2] = {"NO", "YES"}; const string YesNo[2] = {"No", "Yes"}; const string yesno[2] = {"no", "yes"}; #define rall(n) (n).rbegin(),(n).rend() #define INT(...) int __VA_ARGS__;scan(__VA_ARGS__) #define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__) #define STR(...) string __VA_ARGS__;scan(__VA_ARGS__) #define CHR(...) char __VA_ARGS__;scan(__VA_ARGS__) #define DBL(...) double __VA_ARGS__;scan(__VA_ARGS__) #define LD(...) ld __VA_ARGS__;scan(__VA_ARGS__) template ostream &operator<<(ostream&os,const pair&p){os< istream &operator>>(istream&is,pair&p){is>>p.first>>p.second;return is;} template ostream &operator<<(ostream&os,const vector&v){for(auto it=v.begin();it!=v.end();){os<<*it<<((++it)!=v.end()?" ":"");}return os;} template istream &operator>>(istream&is,vector&v){for(T &in:v){is>>in;}return is;} void scan(){} template void scan(Head&head,Tail&... tail){cin>>head;scan(tail...);} template void print(const T &t){cout< void print(const Head &head, const Tail &... tail){cout< void fin(const T &... a){print(a...);exit(0);} ll max(int a,ll b){return max((ll)a,b);} ll max(ll a,int b){return max((ll)b,a);} ll min(int a,ll b){return min((ll)a,b);} ll min(ll a,int b){return min((ll)b,a);} //a以上b以下の個数 template ll RangeOK(ll a,ll b,vector &v){ return max(ub(all(v),b)-lb(all(v),a),0); } template vector compress(vector &X) { vector vals = X; sort(vals.begin(), vals.end()); vals.erase(unique(vals.begin(), vals.end()), vals.end()); for (int i = 0; i < (int)X.size(); i++) { X[i] = lower_bound(vals.begin(), vals.end(), X[i]) - vals.begin(); } return vals; } #include #include using namespace __gnu_pbds; #include using namespace atcoder; using mint = modint998244353; void solve(){ INT(n); vll r(n); vll c(n); scan(r, c); if(n == 1){ print(1); return; } if(n == 2){ print(-1); return; } if(n >= 5){ vvll ans(n, vll(n)); rep(i, n){ rep(j, (n+2)/2){ ans[i][(r[i]-1+j)%n] = r[i]; } } rep(i, n){ rep(j, n){ if(ans[i][j] == 0) ans[i][j] = c[j]; } } rep(i, n) print(ans[i]); return; } vll ind(n); rep(i, n) ind[i] = i; int isok = 0; do{ isok = 1; rep(i, n){ if(r[i] == c[ind[i]]) isok = 0; } if(isok == 1) break; }while(next_permutation(all(ind))); //print(isok, ind); if(isok == 1){ vvll ans(n, vll(n)); rep(i, n){ rep(j, n){ if(j == ind[i]) ans[i][j] = c[j]; else ans[i][j] = r[i]; } print(ans[i]); } return; } print(-1); } int main(){ INT(t); //int t = 1; while(t--) solve(); }