我不告诉你这个链接是什么

分析:模拟可以过,但是好烦啊。。不会写。还有一个扩展欧几里得的方法,见下:

假设光线没有反射,而是对应的感应器镜面对称了一下的话



左下角红色的地方是原始的N∗M的方格,剩下的三个格子是镜面对称的结果。原来的点是(a,b)的话,剩下三个点从左上到右下分别是(a,2∗N−b),(2∗M−a,2∗N−b),(2∗M−a,b)。真实情况是一个点不止只有这三个镜像点,一个点可以在平面内生成无数个点,可以用坐标表示为(2Mk±a,2Nk±b)k为任意非负整数。

假设光线没有经过反射,那么用函数可以表示为y=x,这样要求包括镜像点在内的所有点x=y,于是就有二元一次方程2Mx±a=2Ny±b,可以改成四个二元一次方程式,用扩展欧几里得计算。

对于一个点,光线的真实情况是可能会经过多次,这意味着一个点以及它的镜像点可能有多个在y=x 上,这是就需要取最小的x坐标的点就行了。一个点也可能没有经过,扩展欧几里得无解就行了。还有需要注意的是如果光线经过了原来矩形框的三个角,那么光线就已经射出矩形框了,对于一些可以求出结果的点,还需要进行一下判断,真实情况下是否可行。

代码:

/*****************************************************/
//#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <map>
#include <set>
#include <ctime>
#include <stack>
#include <queue>
#include <cmath>
#include <string>
#include <vector>
#include <cstdio>
#include <cctype>
#include <cstring>
#include <sstream>
#include <cstdlib>
#include <iostream>
#include <algorithm>
using namespace std;
#define offcin ios::sync_with_stdio(false)
#define sigma_size 26
#define lson l,m,v<<1
#define rson m+1,r,v<<1|1
#define slch v<<1
#define srch v<<1|1
#define sgetmid int m = (l+r)>>1
#define LL long long
#define ull unsigned long long
#define mem(x,v) memset(x,v,sizeof(x))
#define lowbit(x) (x&-x)
#define bits(a) __builtin_popcount(a)
#define mk make_pair
#define pb push_back
#define fi first
#define se second const int INF = 0x3f3f3f3f;
const LL INFF = 1e18;
const double pi = acos(-1.0);
const double inf = 1e18;
const double eps = 1e-9;
const LL mod = 1e9+7;
const int maxmat = 10;
const ull BASE = 31; /*****************************************************/ //对于不定整数方程pa+qb=c,若 c mod Gcd(a, b)=0,则该方程存在整数解,否则不存在整数解
//p = p1 + b/Gcd(a, b) * t
//q = q1 - a/Gcd(a, b) * t(其中t为任意整数,正负皆可)
LL exgcd(LL a,LL b,LL &x,LL &y) {
if(!b) {x=1; y=0; return a; }
LL r=exgcd(b,a%b,y,x);
y-=a/b*x;
return r;
} bool solve_equ(LL a,LL b,LL ca,LL cb,LL &x,LL &y,LL &d,LL &ans) {
LL c = ca + cb;
d = exgcd(a, b, x, y);
if(c % d) return false;
LL k = c / d; LL g = b / d;
if (g < 0) g = -g;
g *= a; x *= k; y *= k;
ans = a * x - cb;
ans = (ans % g + g) % g;
return true;
} int main(int argc, char const *argv[]) {
int N, M, K;
cin>>N>>M>>K;
LL over = INFF;
for (int i = 0; i < 3; i ++) {
LL a, b;
if (i == 0) a = N, b = M;
else if (i == 1) a = 0, b = M;
else a = N, b = 0;
LL x, y, d, res, ans = INFF;
for (int k = 0; k < 4; k ++) {
LL tmpa = a, tmpb = b;
if (k & 1) tmpa = -tmpa;
if ((k >> 1) & 1) tmpb = -tmpb;
if (solve_equ(2 * M, -2 * N, tmpa, tmpb, x, y, d, res))
ans = min(ans, res);
}
over = min(over, ans);
}
while (K --) {
LL a, b;
cin>>a>>b;
LL ans = INFF, x, y, d, res;
for (int k = 0; k < 4; k ++) {
LL tmpa = a, tmpb = b;
if (k & 1) tmpa = -tmpa;
if ((k >> 1) & 1) tmpb = -tmpb;
if (solve_equ(2 * M, -2 * N, tmpa, tmpb, x, y, d, res))
ans = min(ans, res);
}
if (ans == INFF || (over != INFF && ans > over)) puts("-1");
else cout<<ans<<endl;
}
return 0;
}

Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) C. Ray Tracing的更多相关文章

  1. CF Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined)

    1. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B. Batch Sort    暴力枚举,水 1.题意:n*m的数组, ...

  2. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined)D Dense Subsequence

    传送门:D Dense Subsequence 题意:输入一个m,然后输入一个字符串,从字符串中取出一些字符组成一个串,要求满足:在任意长度为m的区间内都至少有一个字符被取到,找出所有可能性中字典序最 ...

  3. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B. Batch Sort

    链接 题意:输入n,m,表示一个n行m列的矩阵,每一行数字都是1-m,顺序可能是乱的,每一行可以交换任意2个数的位置,并且可以交换任意2列的所有数 问是否可以使每一行严格递增 思路:暴力枚举所有可能的 ...

  4. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) C.Ray Tracing (模拟或扩展欧几里得)

    http://codeforces.com/contest/724/problem/C 题目大意: 在一个n*m的盒子里,从(0,0)射出一条每秒位移为(1,1)的射线,遵从反射定律,给出k个点,求射 ...

  5. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) E. Goods transportation (非官方贪心解法)

    题目链接:http://codeforces.com/contest/724/problem/E 题目大意: 有n个城市,每个城市有pi件商品,最多能出售si件商品,对于任意一队城市i,j,其中i&l ...

  6. Codeforces Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) A. Checking the Calendar(水题)

    传送门 Description You are given names of two days of the week. Please, determine whether it is possibl ...

  7. Codeforces Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B. Batch Sort(暴力)

    传送门 Description You are given a table consisting of n rows and m columns. Numbers in each row form a ...

  8. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B

    Description You are given a table consisting of n rows and m columns. Numbers in each row form a per ...

  9. Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) A

    Description You are given names of two days of the week. Please, determine whether it is possible th ...

随机推荐

  1. YUV格式分析

    转自:http://www.cnblogs.com/armlinux/archive/2012/02/15/2396763.html Andrew Huang <bluedrum@163.com ...

  2. GDB的深入研究

    GDB的深入研究 一.GDB代码调试 (一)GDB调试实例 在终端中编译一个示例C语言小程序,保存为文件 gdblianxi.c 中,用GCC编译. 在上面的命令行中,使用-o参数指定了编译生成的可执 ...

  3. 浅谈如何使用python抓取网页中的动态数据

    我们经常会发现网页中的许多数据并不是写死在HTML中的,而是通过js动态载入的.所以也就引出了什么是动态数据的概念, 动态数据在这里指的是网页中由Javascript动态生成的页面内容,是在页面加载到 ...

  4. 传感器介绍之DHT11

    一.DHT11介绍 DHT11 数字温湿度传感器,如图所示,是一款含有已校准数字信号输出的温湿度复合传感器.它应用专用的数字模块采集技术和温湿度传感技术,确保产品具有极高的可靠性与卓越的长期稳定性.传 ...

  5. windows平台整合Apache与tomcat

    Apache与Tomcat整合的好处 Apache主要用来解析静态文本,如html.Tomcat虽然也有此功能,但Apache效率大大高于Tomcat,尤其是对于并发数较大的企业级应用,能更好的显示A ...

  6. Sprite(精灵)&& 三个特殊的层Layer

    用来作为以后复习使用. 1 #include "ScenceScend.h" CCScene* ScenceScend::scene() { CCScene* s = CCScen ...

  7. boost asio sync

    Service: #include<boost/asio.hpp> #include<boost/thread.hpp> #include<iostream> #i ...

  8. 首师大附中科创教育平台 我的刷题记录 0304 50095106扔核弹(XDC,你懂的)

    今天给大家献上"C"级题:50095106扔核弹(XDC,你懂的)!! 试题编号:0304   50095106扔核弹(XDC,你懂的) 难度级别:C: 运行时间限制:1000ms ...

  9. caffe + ubuntu16.04 (version without GPU)

    This Guide is based on caffe github wiki guide (https://github.com/BVLC/caffe/wiki/Ubuntu-16.04-or-1 ...

  10. python成长之路【第十三篇】:Python操作MySQL之pymysql

    对于Python操作MySQL主要使用两种方式: 原生模块 pymsql ORM框架 SQLAchemy pymsql pymsql是Python中操作MySQL的模块,其使用方法和MySQLdb几乎 ...