B. A New Technique

All techniques in the ninja world consist of hand seals. At the moment Naruto is learning a new technique, which consists of 𝑛⋅𝑚 different seals, denoted by distinct numbers. All of them were written in an 𝑛×𝑚

table.

The table is lost now. Naruto managed to remember elements of each row from left to right, and elements of each column from top to bottom, but he doesn’t remember the order of rows and columns. Please restore the table consistent with this data so that Naruto will be able to learn the new technique.
Input

The first line of the input contains the only integer 𝑡
(1≤𝑡≤100000

) denoting the number of test cases. Their descriptions follow.

The first line of each test case description consists of two space-separated integers 𝑛
and 𝑚 (1≤𝑛,𝑚≤500) standing for the number of rows and columns in the table, respectively. All hand seals are encoded by the positive integers from 1 to 𝑛⋅𝑚

.

The following 𝑛
lines contain 𝑚

space separated integers each, denoting elements of an arbitrary row in the table left to right.

The following 𝑚
lines contain 𝑛

space separated integers each, denoting elements of an arbitrary column in the table top to bottom.

Sum of 𝑛𝑚
over all test cases does not exceed 250000. It is guaranteed that each row occurs in the input exactly once, as well as each column. It is also guaranteed that each number from 1 to 𝑛𝑚

occurs exactly once in all rows, as well as in all columns. Finally, it is guaranteed that a table consistent with the input exists.
Output

For each test case, output 𝑛
lines with 𝑚

space-separated integers each, denoting the restored table. One can show that the answer is always unique.
Example
Input
Copy

2
2 3
6 5 4
1 2 3
1 6
2 5
3 4
3 1
2
3
1
3 1 2

Output
Copy

1 2 3
6 5 4
3
1
2

Note

Consider the first test case. The matrix is 2×3. You are given the rows and columns in arbitrary order.
One of the rows is [6,5,4]. One of the rows is [1,2,3].
One of the columns is [1,6]. One of the columns is [2,5]. One of the columns is [3,4].
You are to reconstruct the matrix. The answer is given in the output.

#include<bits/stdc++.h>
using namespace std;
int m,n;
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        cin>>m>>n;
        int row[500][500],col[500][500];
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
                cin>>row[i][j];
        }
        for(int i=0;i<n;i++)
        {
            for(int j=0;j<m;j++)
                cin>>col[i][j];
        }
        int ans[500];
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<m;j++)
            {
                for(int k=0;k<n;k++)
                {
                    if(row[j][k]==col[0][i])
                    {
                        ans[i]=j;
                        break;
                    }
                }
            }
        }
        for(int i=0;i<m;i++)
        {
            for(int j=0;j<n;j++)
                cout<<row[ans[i]][j]<<" ";
            cout<<endl;
        }
    }
}


  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

JdiLfc

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值