lightoj 1319 - Monkey Tradition (中国剩余定理)

1319 - Monkey Tradition

PDF (English) Statistics Forum
Time Limit: 2 second(s) Memory Limit: 32 MB

In ‘MonkeyLand‘, there is a traditional game called "Bamboo Climbing". The rules of the game are as follows:

1)       There are N monkeys who play this game and there are N bamboos of equal heights. Let the height be L meters.

2)       Each monkey stands in front of a bamboo and every monkey is assigned a different bamboo.

3)       When the whistle is blown, the monkeys start climbing the bamboos and they are not allowed to jump to a different bamboo throughout the game.

4)       Since they are monkeys, they usually climb by jumping. And in each jump, the ith monkey can jump exactly pi meters (pi is a prime). After a while when a monkey finds that he cannot jump because one more jump may get him out of the bamboo, he reports the remaining length ri that he is not able to cover.

5)       And before the game, each monkey is assigned a distinct pi.

6)       The monkey, who has the lowest ri, wins.

Now, the organizers have found all the information of the game last year, but unluckily they haven‘t found the height of the bamboo. To be more exact, they knowN, all pi and corresponding ri, but not L. So, you came forward and found the task challenging and so, you want to find L, from the given information.

Input

Input starts with an integer T (≤ 10000), denoting the number of test cases.

Each case starts with a line containing an integer n (1 ≤ n ≤ 12). Each of the next n lines contains two integers pi (1 < pi < 40, pi is a prime) and ri(0 < ri < pi). All pi will be distinct.

Output

For each case, print the case number and the minimum possible value of L that satisfies the above conditions. If there is no solution, print ‘Impossible‘.

Sample Input

Output for Sample Input


2

3

5 4

7 6

11 3

4

2 1

3 2

5 3

7 1


Case 1: 69

Case 2: 113



PROBLEM SETTER: TANVIR HASSAN

SPECIAL THANKS: JANE ALAM JAN

贴码先, 定理稍后学;

//分析:首先我们先学习下中国剩余定理:中国剩余定理
//在模数mi两两互素的情况下,可以用中国剩余定理求n使其满足:
//n=b1(mod m1)
//n=b2(mod m2)
//n=b3(mod m3)
//....
//我感觉这分析好像没什么卵...
#include <cstdio>
#define LL long long
LL p[45], r[45];
void Exgcd(LL a, LL b, LL &xx, LL &yy)
{
    if(b==0)
    {
        xx=1; yy=0;
        return;
    }
    Exgcd(b, a%b, xx, yy);
    LL t=xx; xx=yy; yy=t-a/b*yy;
    return;
}
LL China(LL s[], LL b[], int k)// s: 模数; b: 余数
{
    LL n=1, xx, yy;
    LL ans=0;
    for(int i=0; i<k; i++)
        n*=s[i];
    for(int i=0; i<k; i++)
    {
        LL t=n/s[i];
        exgcd(t, s[i], xx, yy);
        ans=(ans+xx*t*b[i])%n;
    }
    return (ans%n+n)%n;
}
int main()
{
    int t, n, Q=1;
    scanf("%d", &t);
    while(t--)
    {
        scanf("%d", &n);
        for(int i=0; i<n; i++)
            scanf("%lld%lld", &p[i], &r[i]);
        LL ans=China(p, r, n);
        printf("Case %d: %lld\n", Q++, ans);
    }
    return 0;
}
时间: 2024-08-03 19:02:36

lightoj 1319 - Monkey Tradition (中国剩余定理)的相关文章

Light OJ 1319 Monkey Tradition(中国剩余定理)

In 'MonkeyLand', there is a traditional game called "Bamboo Climbing". The rules of the game are as follows: 1)       There are N monkeys who play this game and there are N bamboos of equal heights. Let the height be L meters. 2)       Each monk

(light oj 1319) Monkey Tradition 中国剩余定理(CRT)

题目链接:http://lightoj.com/volume_showproblem.php?problem=1319 In 'MonkeyLand', there is a traditional game called "Bamboo Climbing". The rules of the game are as follows: 1) There are N monkeys who play this game and there are N bamboos of equal h

lightoj 1319 - Monkey Tradition

可以用中国剩余定理也可以用线性同余方程组,时间分别是0.028和0.036 在这个问题里逆元一定有解 #include<bits/stdc++.h> using namespace std; long long p[15];//ans==r[i](mod p[i]) long long r[15]; int n; void extgcd(long long a,long long b,long long &d,long long &x,long long &y)//re

Monkey Tradition(中国剩余定理)

Monkey Tradition Time Limit: 2000MS   Memory Limit: 32768KB   64bit IO Format: %lld & %llu Submit Status Description In 'MonkeyLand', there is a traditional game called "Bamboo Climbing". The rules of the game are as follows: 1)       There

Hello Kiki(中国剩余定理——不互质的情况)

Hello Kiki Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 247 Accepted Submission(s): 107   Problem Description One day I was shopping in the supermarket. There was a cashier counting coins serio

Biorhythms(中国剩余定理)

Biorhythms Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 127339   Accepted: 40342 Description Some people believe that there are three cycles in a person's life that start the day he or she is born. These three cycles are the physical,

HDU 5446 Unknown Treasure(lucas + 中国剩余定理 + 模拟乘法)

题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5446 题目大意:求C(n, m) % M, 其中M为不同素数的乘积,即M=p1*p2*...*pk, 1≤k≤10.1≤m≤n≤10^18. 分析: 如果M是素数,则可以直接用lucas定理来做,但是M不是素数,而是素数的连乘积.令C(n, m)为 X ,则可以利用lucas定理分别计算出 X%p1,X%p2, ... , X % pk的值,然后用中国剩余定理来组合得到所求结果. 比较坑的地方是,

UVA 11754 Code Feat (枚举,中国剩余定理)

转载请注明出处: http://www.cnblogs.com/fraud/          ——by fraud C Code Feat   The government hackers at CTU (Counter-Terrorist Unit) have learned some things about the code, but they still haven't quite solved it.They know it's a single, strictly positive

hdu1573X问题(不互素的中国剩余定理)

X问题 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3295    Accepted Submission(s): 1068 Problem Description 求在小于等于N的正整数中有多少个X满足:X mod a[0] = b[0], X mod a[1] = b[1], X mod a[2] = b[2], -, X mo