CF878D.Magic Breeding
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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<=105 , 1<=k<=12 , 1<=q<=105 ) — number of characteristics, creatures and queries.
Next k lines describe original creatures. The line i contains n numbers ai1,ai2,...,ain ( 1<=aij<=109 ) — characteristics of the i -th creature.
Each of the next q lines contains a query. The i -th of these lines contains numbers ti , xi and yi ( 1<=ti<=3 ). They denote a query:
- ti=1 means that Sasha used his spell to the creatures xi and yi .
- ti=2 means that Nikita used his spell to the creatures xi and yi .
- ti=3 means that they want to know the yi -th characteristic of the xi -th creature. In this case 1<=yi<=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 ti=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 .