测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A11461. Magic Breeding

编程题 普及/提高-

题目描述

Nikita and Sasha play a computer game where you have to breed some magical creatures. Initially, they have $k$ creatures numbered from $1$ to $k$ . Creatures have $n$ different characteristics.

Sasha has a spell that allows to create a new creature from two given creatures. Each of its characteristics will be equal to the maximum of the corresponding characteristics of used creatures. Nikita has a similar spell, but in his spell, each characteristic of the new creature is equal to the minimum of the corresponding characteristics of used creatures. A new creature gets the smallest unused number.

They use their spells and are interested in some characteristics of their new creatures. Help them find out these characteristics.

输入格式

The first line contains integers $n$ , $k$ and $q$ ( $1<=n<=10^{5}$ , $1<=k<=12$ , $1<=q<=10^{5}$ ) — number of characteristics, creatures and queries.

Next $k$ lines describe original creatures. The line $i$ contains $n$ numbers $a_{i1},a_{i2},...,a_{in}$ ( $1<=a_{ij}<=10^{9}$ ) — characteristics of the $i$ -th creature.

Each of the next $q$ lines contains a query. The $i$ -th of these lines contains numbers $t_{i}$ , $x_{i}$ and $y_{i}$ ( $1<=t_{i}<=3$ ). They denote a query:

- $t_{i}=1$ means that Sasha used his spell to the creatures $x_{i}$ and $y_{i}$ .
- $t_{i}=2$ means that Nikita used his spell to the creatures $x_{i}$ and $y_{i}$ .
- $t_{i}=3$ means that they want to know the $y_{i}$ -th characteristic of the $x_{i}$ -th creature. In this case $1<=y_{i}<=n$ .

It's guaranteed that all creatures' numbers are valid, that means that they are created before any of the queries involving them.

输出格式

For each query with $t_{i}=3$ output the corresponding characteristic.

输入输出样例

输入 #1
2 2 4
1 2
2 1
1 1 2
2 1 2
3 3 1
3 4 2
输出 #1
2
1
输入 #2
5 3 8
1 2 3 4 5
5 1 2 3 4
4 5 1 2 3
1 1 2
1 2 3
2 4 5
3 6 1
3 6 2
3 6 3
3 6 4
3 6 5
输出 #2
5
2
2
3
4

说明/提示

In the first sample, Sasha makes a creature with number $3$ and characteristics $(2,2)$ . Nikita makes a creature with number $4$ and characteristics $(1,1)$ . After that they find out the first characteristic for the creature $3$ and the second characteristic for the creature $4$ .
上一题 去做题 下一题