zoukankan      html  css  js  c++  java
  • Codeforces Round #280 (Div. 2) E. Vanya and Field 思维题

    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)

    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <ctime>
    #include <iostream>
    #include <algorithm>
    #include <set>
    #include <vector>
    #include <sstream>
    #include <queue>
    #include <typeinfo>
    #include <fstream>
    typedef long long ll;
    using namespace std;
    //freopen("D.in","r",stdin);
    //freopen("D.out","w",stdout);
    #define sspeed ios_base::sync_with_stdio(0);cin.tie(0)
    ll kiss[1000004];
    ll cnt[1000004];
    int main()
    {
        sspeed;
        int n,m,dx,dy;
        int x=0,y=0;
        cin>>n>>m>>dx>>dy;
        for(int i=0;i<n;i++)
        {
            x+=dx;
            x=x%n;
            y+=dy;
            y=y%n;
            kiss[x]=y;
        }
        int flag=0,maxn=0;
        for(int i=0;i<m;i++)
        {
            cin>>x>>y;
            y=(n+y-kiss[x])%n;
            cnt[y]++;
            if(maxn<cnt[y])
            {
                maxn=cnt[y];
                flag=y;
            }
        }
        cout<<"0"<<" "<<flag<<endl;
        return 0;
    }
  • 相关阅读:
    PTA 5-3 树的同构 ——理解递归
    停车管理系统
    两个有序链表序列的合并 (15分)
    lua 面向对象笔记 继承 和 组合
    二叉树高度计算,判定是否为平衡二叉树
    会用git的重要性,记工作中使用git reset 代码丢失的教训
    #include <bits/stdc++.h> 万能头文件
    C++中类的静态变量成员
    C++创建对象加括号和不加括号的区别
    deepin(深度系统)安装微信 qq
  • 原文地址:https://www.cnblogs.com/qscqesze/p/4138476.html
Copyright © 2011-2022 走看看