当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6137:Engineering of the Clones

题目描述
> Cloning was the process of creating a genetically identical or—purposefully and specifically—modified copy of an original organism. It was also one of the key factors that facilitated the end of the Galactic Republic and the dawn of the Galactic Empire in its place. Through the science of cloning, a vast clone army was created on Kamino for the purpose of serving the Republic. Programmed with absolute loyalty to Supreme Chancellor Palpatine, leader of the Galactic Senate and secretly the Sith Lord Darth Sidious, the clones proved to be instrumental in his rise to the position of Emperor. The military applications of cloning were further exploited by the New Order through the creation of countless more clone soldiers, all used mainly for the sole purpose of spreading and enforcing Imperial hegemony throughout the galaxy.
>
> — Wookieepedia

The clones are engineered such that all have exactly the same genetic footprint, and are flash-learned directly from a template. Thus, all clones should be completely identical to the original person in theory. However, the cloning procedure is proven to be defective. A clone may be physically deformed and will die in his early age, or even worse, a seemingly functional clone may also have tiny defects in the brain development that may leak secretly programmed information. During the Clone War, such a rare case was reported: a Jedi was killed by a malfunctioning clone believed that the Order 66 has been issued, and the case nearly lead to the Jedi Council to discover the secret plan of the evil Darth Sidious.

After the malfunctioning case was reported, Chancellor Palpatine decided to carefully test all clones before they are being delivered to the battlefield. This is done by a procedure called "high-precision genome fingerprinting" that balances the time and the money. In particular, the entire gnome of a clone is taken and encoded as a single number. Only one digit of that number is actually sampled and tested.

Given genes denoted by prime numbers $p_1, p_2, .. , p_n$, the genome of the clone is represented by a number $A$ defined as

$$A=p_1^{r_1} p_2^{r_2} .. p_n^{r_n}$$

where
$$
\left| r_i - r_j \right| \le 1, 1 \le i \le j \le n.
$$

Since $A$ may be huge in size, the test process only samples one digit as the fingerprint: the $k$-th digit of $\frac{1}{A - 1}$ written in base $\prod_{i=1}^{n} p_i$.

You received the mission of designing an algorithm to perform the genome fingerprinting test. Given a genome description ($p_i$ and $r_i$) and $k$, you should find the fingerprint value.
输入解释
The first line of the input contains an integer $T$, denoting the number of test cases.

For each test case, the first line contains two integers $n$ ($1\le n\le 10^6$) and $k$ ($1\le k \lt \max\{r^2_1, r^2_2, .. , r^2_n\}$).

The next line contains $n$ distinct primes. The $i$-th number is $p_i$ $1\le \prod_{i=1}^{n} p_i \le 10^6$.

The next line contains $n$ integers. The $i$-th number is $r_i$ ($1\le r_i \le 5 * 10^4$).
输出解释
You should output the answers for the queries, one integer per line.
输入样例
1
2 1
2 5
2 2
输出样例
0
来自杭电HDUOJ的附加信息
Recommend liuyiding

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6137

最后修改于 2020-10-25T23:28:40+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/65536K(Java/Others)