Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) C. Ray Tracing
分析:模拟可以过,但是好烦啊。。不会写。还有一个扩展欧几里得的方法,见下:
假设光线没有反射,而是对应的感应器镜面对称了一下的话
左下角红色的地方是原始的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的更多相关文章
- 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的数组, ...
- Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined)D Dense Subsequence
传送门:D Dense Subsequence 题意:输入一个m,然后输入一个字符串,从字符串中取出一些字符组成一个串,要求满足:在任意长度为m的区间内都至少有一个字符被取到,找出所有可能性中字典序最 ...
- Intel Code Challenge Final Round (Div. 1 + Div. 2, Combined) B. Batch Sort
链接 题意:输入n,m,表示一个n行m列的矩阵,每一行数字都是1-m,顺序可能是乱的,每一行可以交换任意2个数的位置,并且可以交换任意2列的所有数 问是否可以使每一行严格递增 思路:暴力枚举所有可能的 ...
- 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个点,求射 ...
- 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 ...
- 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 ...
- 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 ...
- 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 ...
- 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 ...
随机推荐
- Linux中tcpdump的编译和使用
tcpdump官网:http://www.tcpdump.org/ 转载于:http://www.cnblogs.com/hzl6255/p/6147985.html 目录 1. 介绍 2. 编译 2 ...
- 面试题HTML +CSS
HTML+CSS部分1.行内元素和块级元素?img算什么?行内元素怎么转化为块级元素?行内元素:和有他元素都在一行上,高度.行高及外边距和内边距都不可改变,文字图片的宽度不可改变,只能容纳文本或者其他 ...
- [linux系统]查看内核版本和系统版本方法
查看内核版本信息的两个命令: uname -a cat /proc/version 查看系统版本的命令: lsb_release -a more /etc/issue cat /etc/redhat- ...
- MPI Maelstrom - POJ1502最短路
Time Limit: 1000MS Memory Limit: 10000K Description BIT has recently taken delivery of their new sup ...
- 关于打印机能PING通但是无法打开\\地址的问题
首先PING地址,看是否能否PING通,如果不通,代表网络不通不能共享, 如果能PING通,但是无法打开\\地址,那么就就检查这几个地方: 1 防火墙是否关闭 2 print splooer 打印 ...
- centos6.6_64位操作系统安装时候出现kernel panic - not syncing: Attempted to kill init 解决办法
最近在VM上安装centos时候经常被这个问题虐,后来进入单用户模式在 kernel /vmlinuz-XXXXro root=/dev/vogroup00/logvol00 rhgb quie ...
- 关于面试别问及Spring如何回答思路总结!
首先要知道 Spring两大核心IOC和AOP(Java轻量级业务层框架Spring两大核心IOC和AOP原理) IOC: 1.从Java最基本的创建对象开始 如Interface Driven De ...
- HDU 5980 Find Small A(寻找小A)
p.MsoNormal { margin: 0pt; margin-bottom: .0001pt; text-align: justify; font-family: Calibri; font-s ...
- C#泛型文章汇总
http://www.cnblogs.com/kid-li/archive/2006/11/29/577045.html http://www.blogjava.net/Jack2007/archiv ...
- 基础笔记12(socket,url网络通信)
进一步深入socket 1.网络通信条件: .IP地址,可用主机名. .传输数据时将不用的应用程序通过数字标识区分开来,这种标识称为逻辑端口,也称端口.(0-65535端口,一般系统预留0-1024) ...