博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 492E Vanya and Field
阅读量:6692 次
发布时间:2019-06-25

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

 

 

E. Vanya and Field
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vanya decided to walk in the field of size n × n cells. The field contains m apple trees, the i-th apple tree is at the cell with coordinates(xi, yi). Vanya moves towards vector (dx, dy). That means that if Vanya is now at the cell (x, y), then in a second he will be at cell . The following condition is satisfied for the vector: , where  is the largest integer that divides both a and b. Vanya ends his path when he reaches the square he has already visited.

Vanya wonders, from what square of the field he should start his path to see as many apple trees as possible.

Input

The first line contains integers n, m, dx, dy(1 ≤ n ≤ 106, 1 ≤ m ≤ 105, 1 ≤ dx, dy ≤ n) — the size of the field, the number of apple trees and the vector of Vanya's movement. Next m lines contain integers xi, yi (0 ≤ xi, yi ≤ n - 1) — the coordinates of apples. One cell may contain multiple apple trees.

Output

Print two space-separated numbers — the coordinates of the cell from which you should start your path. If there are several answers you are allowed to print any of them.

Sample test(s)
input
5 5 2 3 0 0 1 2 1 3 2 4 3 1
output
1 3
input
2 3 1 1 0 0 0 1 1 1
output
0 0
Note

In the first sample Vanya's path will look like: (1, 3) - (3, 1) - (0, 4) - (2, 2) - (4, 0) - (1, 3)

In the second sample: (0, 0) - (1, 1) - (0, 0)

 

 

题目给出  gcd( n , dx ) = gcd( n , dy ) = 1 , 意味着(0~n-1)每个数都可以遍历到。

然后从x,y轴方向0坐标开始分别预处理出的n个数。

对于两颗苹果树,如果他们 y坐标到0坐标的距离 与 x坐标到0坐标的距离 两者的差值相同。

那么这两个坐标是来自同一个环的。

扫一遍m个点以后取出最大的就可以了。

 

 

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long LL;typedef pair
pii;const int N = 2000011 ;const int M = 1000000 ;const int inf = 1e9+7;#define X first#define Y secondint n , m , dx , dy , x[N] , y[N] , cnt[N] , id ;vector
e;void test() { for( int i = 0 ; i < n ; ++i ) cout << x[i] << ' ' ; cout <
> e[i].X >> e[i].Y ; int disx = ( x[e[i].X] + n ) % n ; int disy = ( y[e[i].Y] + n ) % n ; cnt[ (disx + n - disy)%n ] ++ ; } LL ans = 0 ; for( int i = 0; i < n ; ++i ) { if( cnt[ans] < cnt[i] ) ans = i; } cout << ( ans*dx ) % n << " 0"<< endl ;}int main(){ #ifdef LOCAL freopen("in.txt","r",stdin); #endif // LOCAL ios::sync_with_stdio(false); while( cin >> n >> m >> dx >> dy ) Run();}
View Code

 

转载于:https://www.cnblogs.com/hlmark/p/4143689.html

你可能感兴趣的文章
Jenkins配置MSBuild编译.net4.6的项目
查看>>
laravel的一些坑
查看>>
Kali linux 2016.2(Rolling)安装之后的常用配置
查看>>
MySQL的数据模型
查看>>
【转载】高性能IO设计 & Java NIO & 同步/异步 阻塞/非阻塞 Reactor/Proactor
查看>>
关于Elasticsearch单个索引文档最大数量问题
查看>>
Android自定义ImageView实现图片圆形 ,椭圆和矩形圆角显示
查看>>
Sqlserver双机热备文档(无域)
查看>>
java8的接口新特性(可以有方法体的接口)(转)
查看>>
Spring MVC学习摘要
查看>>
How to use JDBC-Authentication of Spring Boot/Spring Security with Flyway
查看>>
Hadoop MapReduce编程 API入门系列之Crime数据分析(二十五)(未完)
查看>>
大漠插件使用
查看>>
百度echarts
查看>>
5 HTML&JS等前端知识系列之jquery基础
查看>>
jsp里的逻辑语句c:if和c:choose
查看>>
Spectral Graph Theory的一些定理
查看>>
css !import
查看>>
Unity3D 4.x编辑器操作技巧
查看>>
人机对战初体验—四子棋游戏
查看>>