博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Western Subregional of NEERC, Minsk, Wednesday, November 4, 2015 Problem I. Alien Rectangles 数学
阅读量:6244 次
发布时间:2019-06-22

本文共 1795 字,大约阅读时间需要 5 分钟。

Problem I. Alien Rectangles

题目连接:

Description

The spacecraft hovering above the surface of the faraway planet takes pictures of the landscape underneath

from time to time. Each photo is a circle centred at the point the spacecraft is orbiting over.
For detailed study of the planet’s surface researchers have chosen a Cartesian coordinate system on the
photos with the origin placed to the circle’s centre. The radius of the circle is R. The following stage of
the research requires selecting a region in the form of a nondegenerate rectangle with sides parallel to the
coordinate axes and with vertices at the points with integer coordinates. The points should lie inside or
on the boundary of the circle.
Please help the researchers and compute the total number of ways to choose a rectangular region. As the
number of ways may be big, output it modulo 109 + 2015.

Input

Input contains the only integer R (1 ≤ R ≤ 1 000 000).

Output

Output the only integer: the number of ways to choose a rectangle in the given circle modulo 109 + 2015.

Sample Input

2

Sample Output

9

Hint

题意

有一个中心在原点的圆,然后半径为R,问你里面以及圆上的整点,能够成多少个矩形。

题解:

算出每个坐标的点的个数,然后开始推公式就好了。

具体看代码。

至于看到只有一个数,就去推O1公式的,基本就走远了……

代码

#include 
using namespace std;const int N=1000100;const int pr=1e9 + 2015;long long ans=0;int main(){ int R; scanf("%d",&R); int nx=1; for(int i=1;i<=R;i++) { int x=i*2+1; int y=(int)sqrt(1LL*R*R-1LL*i*i)*2+1; long long t1,t2; t1=1LL*x*(x-1)/2LL,t2=1LL*y*(y-1)/2LL; if(t1>=pr) t1%=pr; if(t2>=pr) t2%=pr; ans+=(t1*t2%pr); if(ans>=pr) ans%=pr; t1=1LL*nx*(nx-1)/2LL,t2=1LL*y*(y-1)/2LL; if(t1>=pr) t1%=pr; if(t2>=pr) t2%=pr; ans-=(t1*t2%pr); if(ans<0) ans+=pr; nx=x; } cout<
<

转载地址:http://wcpia.baihongyu.com/

你可能感兴趣的文章
server 2003 IIS无法访问asp页面,但是可以访问html静态页面
查看>>
totem成为万能播放器
查看>>
常用CSS记录
查看>>
我的友情链接
查看>>
DNS介绍和原理
查看>>
使用JIRA搭建企业问题跟踪系统3
查看>>
如何定位消耗CPU最多的线程
查看>>
Linux PAM 之cracklib模块
查看>>
buffer && cache
查看>>
Mockito
查看>>
android闹钟实现原理
查看>>
lamp
查看>>
2-12 Linux一些基础练习的实战资料整理
查看>>
在线图片处理的开源项目或开放平台
查看>>
移动设备硬件统计
查看>>
CoreData
查看>>
【step by step构建轻量级web框架】轻量级框架jbeer预览
查看>>
Spring2.5整合ActiveMQ 5.2
查看>>
浅析Struts1和Struts2的Action线程安全问题
查看>>
java-颠倒一个句子中的词的顺序。比如: I am a student颠倒后变成:student a am I
查看>>