Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) C. Ray Tracing 数学 C. Ray Tracing

部署运行你感兴趣的模型镜像

题目连接:

http://codeforces.com/contest/724/problem/C

Description

oThere are k sensors located in the rectangular room of size n × m meters. The i-th sensor is located at point (xi, yi). All sensors are located at distinct points strictly inside the rectangle.

Opposite corners of the room are located at points (0, 0) and (n, m). Walls of the room are parallel to coordinate axes.

At the moment 0, from the point (0, 0) the laser ray is released in the direction of point (1, 1). The ray travels with a speed of meters per second. Thus, the ray will reach the point (1, 1) in exactly one second after the start.

When the ray meets the wall it's reflected by the rule that the angle of incidence is equal to the angle of reflection. If the ray reaches any of the four corners, it immediately stops.

For each sensor you have to determine the first moment of time when the ray will pass through the point where this sensor is located. If the ray will never pass through this point, print  - 1 for such sensors.

Input

The first line of the input contains three integers n, m and k (2 ≤ n, m ≤ 100 000, 1 ≤ k ≤ 100 000) — lengths of the room's walls and the number of sensors.

Each of the following k lines contains two integers xi and yi (1 ≤ xi ≤ n - 1, 1 ≤ yi ≤ m - 1) — coordinates of the sensors. It's guaranteed that no two sensors are located at the same point.

Output

Print k integers. The i-th of them should be equal to the number of seconds when the ray first passes through the point where the i-th sensor is located, or  - 1 if this will never happen.

Sample Input

3 3 4
1 1
1 2
2 1
2 2

Sample Output

1
-1
-1
2

Hint

题意

有一个球,一开始从00点开始发射,速度向量为(1,1),在一个nm的矩形里面弹来弹去

然后k个询问,问你第一次遇到这个点的时间是多少

题解:

其实可以转换成一个同余方程,然后求解就好了。

方程实际上是,x%2n=x0,x%2m=y0,显然可以转化为同余方程,exgcd求解就好了

HDU 5114

代码

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const long long INF=1e16;
ll extend_gcd(ll a,ll b,ll &x,ll &y)
{
    ll d=a;
    if(b!=0)
    {
        d=extend_gcd(b,a%b,y,x);
        y-=(a/b)*x;
    }
    else
    {
        x=1;
        y=0;
    }
    return d;
}
ll xx,yy;
long long solve(int x, int y)
{
    long long N = 2 * xx, M = 2 * yy;
    long long X, Y;
    long long g = extend_gcd(N, M, X, Y);
    if ((y - x) % g != 0)
        return INF;
    long long lcm = 1ll * N * M / g;
    X *= (y - x) / g;
    long long x0 = X % lcm * N % lcm + x;
    x0 = (x0 % lcm + lcm) % lcm;
    if (x0 == 0)
        x0 += lcm;
    return x0;
}

int main()
{
    int k;
    scanf("%lld%lld%d",&xx,&yy,&k);
    long long t=min({solve(xx,yy),solve(0,0),solve(0,yy),solve(xx,0)});
    while(k--)
    {
        long long xxx,yyy;
        cin>>xxx>>yyy;
        long long tt=min({solve(xxx,yyy),solve(2*xx-xxx,yyy),solve(xxx,2*yy-yyy),solve(2*xx-xxx,2*yy-yyy)});
        if(tt<t&&tt<INF)cout<<tt<<endl;
        else cout<<"-1"<<endl;
    }
}

您可能感兴趣的与本文相关的镜像

AutoGPT

AutoGPT

AI应用

AutoGPT于2023年3月30日由游戏公司Significant Gravitas Ltd.的创始人Toran Bruce Richards发布,AutoGPT是一个AI agent(智能体),也是开源的应用程序,结合了GPT-4和GPT-3.5技术,给定自然语言的目标,它将尝试通过将其分解成子任务,并在自动循环中使用互联网和其他工具来实现这一目标

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值