C. Ray Tracing
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

There 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 nm 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.

Examples
input
3 3 4
1 1
1 2
2 1
2 2
output
1
-1
-1
2
input
3 4 6
1 1
2 1
1 2
2 2
1 3
2 3
output
1
-1
-1
2
5
-1
input
7 4 5
1 3
2 2
5 1
5 3
4 3
output
13
2
9
5
-1 题意:n*m的矩阵,从(0,0)沿45度角射出一束光,速度为根号2,碰到边界反射,到角上结束。k个点,分别输出光到每个点的时间. 一段一段的模拟。
每个点y-x和y+x为定值,用两个vector存点,v1[b],v2[b],这样在模拟每一段线段的时候就不用遍历整个点的集合。只需要遍历当前k和b下的vector中的点。
#include<iostream>
#include<cstring>
#include<cstdio>
#include<string>
#include<algorithm>
#include<vector>
using namespace std; int n,m,t; struct Node
{
int num;
int x,y; }; Node getPoint(Node st,int k)
{
Node p;
if(k*(-st.x)+st.y!=st.y&&k*(-st.x)+st.y>=&&k*(-st.x)+st.y<=m)
{
p.x=;
p.y=k*(-st.x)+st.y;
return p;
}
if(k*(n-st.x)+st.y!=st.y&&k*(n-st.x)+st.y>=&&k*(n-st.x)+st.y<=m)
{
p.x=n;
p.y=k*(n-st.x)+st.y;
return p;
}
if((-st.y+k*st.x)/k!=st.x&&(-st.y+k*st.x)/k>=&&(-st.y+k*st.x)/k<=n)
{
p.x=(-st.y+k*st.x)/k;
p.y=;
return p;
}
if((m-st.y+k*st.x)/k!=st.x&&(m-st.y+k*st.x)/k>=&&(m-st.y+k*st.x)/k<=n)
{
p.x=(m-st.y+k*st.x)/k;
p.y=m;
return p;
}
} bool isEnd(int x,int y)
{
if(x==n&&y==)
return ;
if(x==n&&y==m)
return ;
if(x==&&y==m)
return ;
return ;
} int getCost(int sx,int sy,int k,int tmpx,int tmpy)
{
int b=sy-k*sx;
if(tmpy!=k*tmpx+b)
return -;
return abs(tmpx-sx);
} long long ans[];
vector<Node> v1[];
vector<Node> v2[];
int main()
{
scanf("%d%d%d",&n,&m,&t);
/*Node a;
a.x=3;
a.y=3;
Node b=getPoint(a,-1);
cout<<b.x<<" "<<b.y<<endl;*/
int all=;
for(int i=; i<t; i++)
{
Node node;
node.num=i;
scanf("%d%d",&node.x,&node.y);
int b1=node.y-node.x+;
int b2=node.y+node.x;
v1[b1].push_back(node);
v2[b2].push_back(node);
all++;
}
//for(int i=0;i<v2[6].size();i++)
// cout<<v2[6][i].num<<" "<<v2[6][i].x<<" "<<v2[6][i].y<<endl;
Node st;
st.x=;
st.y=;
int cnt=;
long long time=;
while(!isEnd(st.x,st.y))
{
int k;
if(cnt%)
k=-;
else
k=;
cnt++;
Node en=getPoint(st,k);
int b=st.y-k*st.x;
if(k==)
{
b+=;
for(int i=; i<v1[b].size(); i++)
{
if(ans[v1[b][i].num]==)
{
int cost=getCost(st.x,st.y,k,v1[b][i].x,v1[b][i].y);
ans[v1[b][i].num]=time+cost;
}
}
}
if(k==-)
{
for(int i=; i<v2[b].size(); i++)
{
if(ans[v2[b][i].num]==)
{
int cost=getCost(st.x,st.y,k,v2[b][i].x,v2[b][i].y);
ans[v2[b][i].num]=time+cost;
}
}
}
time+=abs(en.x-st.x);
st=en;
}
//cout<<"cnt:"<<cnt<<endl;
for(int i=; i<all; i++)
if(ans[i]==)
printf("-1\n");
else
printf("%I64d\n",ans[i]);
return ;
}

codeforces_724C_Ray Tracing的更多相关文章

  1. 如何利用ETW(Event Tracing for Windows)记录日志

    ETW是Event Tracing for Windows的简称,它是Windows提供的原生的事件跟踪日志系统.由于采用内核(Kernel)层面的缓冲和日志记录机制,所以ETW提供了一种非常高效的事 ...

  2. #研发解决方案介绍#Tracing(鹰眼)

    郑昀 最后更新于2014/11/12 关键词:GoogleDapper.分布式跟踪.鹰眼.Tracing.HBase.HDFS. 本文档适用人员:研发   分布式系统为什么需要 Tracing?   ...

  3. OpenCascade Ray Tracing Rendering

    OpenCascade Ray Tracing Rendering eryar@163.com 摘要Abstract:OpenCascade6.7.0中引入了光线跟踪算法的实现.使用光线跟踪算法可实现 ...

  4. (ETW) Event Tracing for Windows 入门 (含pdf下载)

    内容提纲 • ETW 介绍 • ETW 使用 • ETW 监控本机Demo • ETW 监控远程机器的思路 • 底层类库:EventSource 介绍 • 底层类库:TraceEvent 介绍 ETW ...

  5. 使用 Web Tracing Framework 分析富 JS 应用的性能

    来自谷歌的 Web Tracing Framework 包含一组工具和脚本,用于 JavaScript 相关代码的性能分析.它是重 JavaScript 应用程序的理想选择,而 JavaScript ...

  6. NS3 日志(Logging)、命令行参数、Tracing系统概述(转载)

    NS-3日志子系统的提供了各种查看仿真结果的渠道: 一.使用Logging Module 1 [预备知识]日志级别及其对应的宏 NS-3 提供了若干个日志级别来满足不同的 Debug 需求,每一级的日 ...

  7. 开始研究Ray tracing

    几个月前面试时Boss问过我一个问题--"除了scanline渲染方法,你还知道什么其他渲染方式?",我没答出来,至今记忆犹新. 前段时间摆弄Intel VTune时看了它的示例代 ...

  8. [转]分布式系统为什么需要 Tracing?

    分布式系统为什么需要 Tracing?   先介绍一个概念:分布式跟踪,或分布式追踪.   电商平台由数以百计的分布式服务构成,每一个请求路由过来后,会经过多个业务系统并留下足迹,并产生对各种Cach ...

  9. End-to-End Tracing of Ajax/Java Applications Using DTrace

    End-to-End Tracing of Ajax/Java Applications Using DTrace         By Amit Hurvitz, July 2007     Aja ...

随机推荐

  1. Effictive Java学习笔记1:创建和销毁对象

    建议1:考虑用静态工厂方法代替构造器 理由:1)静态方法有名字啊,更容易懂和理解.构造方法重载容易让人混淆,并不是好主意 2)静态工厂方法可以不必每次调用时都创建一个新对象,而公共构造函数每次调用都会 ...

  2. 【解决】hive与hbase表结合级联查询的问题

    [Author]: kwu [解决]hive与hbase表结合级联查询的问题.hive两个表以上,关联查询时出现长时无法返回的情况. 同一时候也不出现,mr的进度百分比. 查询日志如图所看到的: 解决 ...

  3. ORACLE database console无法登陆

    登陆EM时给我报这个错 Code d'erreur : ssl_error_weak_server_cert_key 仅仅须要关闭EM的SSL就好了 [oracle@ace-PROD1 ~]$ emc ...

  4. cc2540 cc2541 开发板资料更新日志

    经过多次PCB打样和全面调试.已经完毕了cc2540 cc2541的开发板的批量贴片.硬件告一段落, 接下来是全面完好软件方面的工作.眼下已经针对没有开发经验的用户编写完毕0基础基础实验代码和教程.接 ...

  5. ios測试的时候出现错误

    dyld: Library not loaded: @rpath/XCTest.framework/XCTest   Referenced from: /Users/zhumin/Library/De ...

  6. ios dyld: Library not loaded: @rpath/xxx.framework/xxx 之根本原因

    碰到问题 dyld: Library not loaded: @rpath/xxx.framework/xxx Referenced from: /var/containers/Bundle/Appl ...

  7. singlefile.py

    #! encoding=utf-8 import os import os.path AllFiles = {} MinSize = 8100 def OneDir( DirName ): if Di ...

  8. js的类库

    prototype.js https://github.com/sstephenson/prototype moment js https://github.com/moment/moment thr ...

  9. anaconda安装python三方包,以tensorflow为例

    Anaconda概述 Anaconda是一个用于科学计算的Python发行版,支持 Linux, Mac, Windows系统,提供了包管理与环境管理的功能,可以很方便地解决多版本python并存.切 ...

  10. 杂项-Java:JMX

    ylbtech-杂项-Java:JMX 1.返回顶部 1. JMX(Java Management Extensions,即Java管理扩展)是一个为应用程序.设备.系统等植入管理功能的框架.JMX可 ...