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

建议使用的浏览器:

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

4672:Present Day, Present Time

题目描述
Sangxin and Bicycle play games everyday, but no matter what they play, Sangxin always loses. Sangxin found that there is no chance to beat Bicycle even playing dice.
One day, Sangxin came up with a brand new game with stones. In this game there are n piles of stones and m recycling centers, each pile of stones has Ai stones and each recycling center could process exactly Bi (which is pre-assigned) stones at a time. Sangxin and Bicycle operate by turns. Each turn the player must pick one piles of stones and recycle some stones in that pile. Note that they can use recycling centers unlimited times in one turn. The one couldn't do anything during his turn loses.
After thinking a while Sangxin thought the game is too easy and appended a weird rule: After someone's turn if there are no way to completely recycle any pile of stones, he loses immediately.
Now, given the initial state of the game, Sangxin wants to know that who will win. Assume they will play in optimal strategy. The players' name and who will play first is given.
输入解释
The input contains several test cases, terminated by EOF. Most of test cases are rather small.
Each case has 4 lines, the first line contains two integer n (1 ≤ n ≤ 100000) and m (1 ≤ m ≤ 100), which denotes the number of stone piles and recycling centers. The second line contains two string (length not greater than 20 and contains only lowercase letters) indicating the players' name. The first player in that line plays first. The third line contains n integers, i-th denotes Ai (1 ≤ Ai ≤ 1000000000) and next line contains m integer, i-th denotes Bi(1 ≤ Bi ≤ 100).
输出解释
For each case output the winner's name on separate lines.
输入样例
3 2
sangxin bike
1 2 3
2 3
3 1
bike sangxin
3 4 9
1
输出样例
bike
bike
来自杭电HDUOJ的附加信息
Recommend zhuyuanchen520

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

源链接: HDU-4672

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

共提交 0

通过率 --%
时间上限 内存上限
3000/1500MS(Java/Others) 65535/65535K(Java/Others)