Codeforces Round #679 (Div. 2) B. A New Technique

题目链接:https://codeforc.es/contest/1435/problem/B

All techniques in the ninja world consist of hand seals. At the moment Naruto is learning a new technique, which consists of n⋅m different seals, denoted by distinct numbers. All of them were written in an n×m 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 t (1≤t≤100000) denoting the number of test cases. Their descriptions follow.

The first line of each test case description consists of two space-separated integers n and m (1≤n,m≤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 n⋅m.

The following n lines contain m space separated integers each, denoting elements of an arbitrary row in the table left to right.

The following m lines contain n space separated integers each, denoting elements of an arbitrary column in the table top to bottom.

Sum of nm 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 nm 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 n lines with m space-separated integers each, denoting the restored table. One can show that the answer is always unique.

Example

input

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

output

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.

题意

给出矩阵的行数与列数,给出每一行的数据(行号不是按顺序),再给出每一列的数据(列号不是按顺序),还原该矩阵。

分析

给出的列中,我们可以知道每一行的顺序,用 map 来记录给出的行中第一个数字的顺序,再在给出的列中找到这一列,就知道了输出顺序,按顺序输出即可。

代码
#include<bits/stdc++.h>
using namespace std;

int t;
int n,m;
map<int,int> num_idx;
int a[507][507];
int row_begin[507];

int main()
{
	scanf("%d",&t);
	while(t--)
	{
		num_idx.clear();
		scanf("%d%d",&n,&m);
		for(int i=1;i<=n;i++)
		{
			int r;
			scanf("%d",&r);
			num_idx[r] = i;
			a[i][1] = r;
			for(int j=2;j<=m;j++)
				scanf("%d",&a[i][j]);
		}
		for(int i=1;i<=m;i++)
		{
			for(int j=1;j<=n;j++)
			{
				int x;
				scanf("%d",&x);
				if(num_idx[x] != 0) row_begin[j] = x;
			}
		}
		for(int i=1;i<=n;i++)
		{
			for(int j=1;j<=m;j++)
			{
				printf("%d ",a[num_idx[row_begin[i]]][j]);
			}
			printf("\n");
		}
	}
	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值