2016 Multi-University Training Contest3

19 篇文章 0 订阅
15 篇文章 2 订阅

HDU【5752】——Sqrt Bo


Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)
Problem Description

Let’s define the function f(n)=|n| .

Bo wanted to know the minimum number y which satisfies f y (n)=1.

note: f1(n)=f(n),fy(n)=f(fy1(n))

It is a pity that Bo can only use 1 unit of time to calculate this function each time.

And Bo is impatient, he cannot stand waiting for longer than 5 units of time.

So Bo wants to know if he can solve this problem in 5 units of time.

Input

This problem has multi test cases(no more than 120).

Each test case contains a non-negative integer n(n< 10100 ).

Output

For each test case print a integer - the answer y or a string “TAT” - Bo can’t solve this problem.

Sample Input

233
233333333333333333333333333333333333333333333333333333333

Sample Output

3
TAT

题意:给你一个数字,判断是不是能够在5次之内开方到1。我们经过计算之后发现最大的数为int的最大值,那么问题就很好处理了,当然要特判0 orz。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <vector>
#include <algorithm>

using namespace std;

typedef long long LL;

const LL Max = (1LL<<32)-1;

char s[110];

int main()
{
    while(~scanf("%s",s))
    {
        LL ans = 0;

        int len = strlen(s);

        for(int i = 0;i<len;i++)
        {
            ans = ans*10+s[i]-'0';

            if(ans > Max) break;
        }

        if(ans > Max || ans == 0)
        {
            printf("TAT\n");
        }
        else
        {
            int num = 0;

            while(ans >1)
            {
                num++;

                ans = floor(sqrt(ans));
            }

            printf("%d\n",num);
        }
    }
    return 0;
}

HDU【5753】——Permutation Bo


Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)

Special Judge

Problem Description

There are two sequences h1hn and c1cn . h1∼hn is a permutation of 1∼n. particularly, h0=hn+1=0 .

We define the expression [condition] is 1 when condition is True,is 0 when condition is False.

Define the function f(h)=ni=1ci[hi>hi1andhi>hi+1]

Bo have gotten the value of c1cn , and he wants to know the expected value of f(h).

Input

This problem has multi test cases(no more than 12).

For each test case, the first line contains a non-negative integer n(1≤n≤1000), second line contains n non-negative integer ci(0≤ci≤1000).

Output

For each test cases print a decimal - the expectation of f(h).

If the absolute error between your answer and the standard answer is no more than 10−4, your solution will be accepted.

Sample Input

4
3 2 4 5
5
3 5 99 32 12

Sample Output

6.000000
52.833333

题意:给你一个n和对应位置的系数,定义f(n)为在n的某个排列中的凸点对应位置的c的加和,问f(n)的期望为多少?,单独考虑某个点的期望最后加和就是最后f(n)的期望,首先最边上的两个点,他们的期望为 ci2 ,考虑中间的点,期望为 cin1i=2i2in(n1)(n2) ,特判1的情况。

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <vector>
#include <algorithm>

using namespace std;

typedef long long LL;

LL sum;

double ans ;

int main()
{
    int n,c;

    while(~scanf("%d",&n))
    {
        ans = 0 ;

        sum = 0;

        for(int i = 2;i<n;i++)
        {
            sum+=(i*(i-1));
        }

        for(int i = 0;i<n;i++)
        {
            scanf("%d",&c);

            if(i == 0 || i== n-1)
            {
                ans +=(c*1.0/2);
            }
            else
            {
                ans+=(c*1.0*sum)/(n*(n-1)*(n-2));
            }
        }

        if(n == 1)
        {
            ans = c;
        }

        printf("%.6f\n",ans);
    }
    return 0;
}

HDU【5754】——Life Winner Bo

Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)
Problem Description

Bo is a “Life Winner”.He likes playing chessboard games with his girlfriend G.

The size of the chessboard is N×M.The top left corner is numbered(1,1) and the lower right corner is numberd (N,M).

For each game,Bo and G take turns moving a chesspiece(Bo first).At first,the chesspiece is located at (1,1).And the winner is the person who first moves the chesspiece to (N,M).At one point,if the chess can’t be moved and it isn’t located at (N,M),they end in a draw.

In general,the chesspiece can only be moved right or down.Formally,suppose it is located at (x,y),it can be moved to the next point (x′,y′) only if x′≥x and y′≥y.Also it can’t be moved to the outside of chessboard.

Besides,There are four kinds of chess(They have movement rules respectively).

1.king.

2.rook(castle).

3.knight.

4.queen.

(The movement rule is as same as the chess.)

For each type of chess,you should find out that who will win the game if they both play in an optimal strategy.

Print the winner’s name(“B” or “G”) or “D” if nobody wins the game.

Input

In the first line,there is a number T as a case number.

In the next T lines,there are three numbers type,N and M.

“type” means the kind of the chess.

T≤1000,2≤N,M≤1000,1≤type≤4

Output

For each question,print the answer.

Sample Input

4
1 5 5
2 5 5
3 5 5
4 5 5

Sample Output

G
G
D
B

题意:每次在一个的n × m的棋盘上(1,1)放一个棋子,根据放的棋子不同,我们有不同的走的方式,当先走到(n,m)的地方的人为胜者,或者永远走不到,为平局。我们发现只有骑士有平局的情况,其他的均没有平局的情况,我们可以通过SG函数发现规律(但是皇后的规律好难找,只能交表),对于马我们可以 n2 的处理出来他的状态,如果赢不了,就尽量的平局(比赛的没有想到orz)

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <vector>
#include <algorithm>

using namespace std;

typedef long long LL;

int vis[1100][1100];

int SG[][2] = {{2,3},{3,2},{4,6},{5,8},{6,4},{7,11},{8,5},{9,14},{10,16},{11,7},{12,19},{13,21},{14,9},{15,24},{16,10},{17,27},{18,29},{19,12},{20,32},
    {21,13},{22,35},{23,37},{24,15},{25,40},{26,42},{27,17},{28,45},{29,18},{30,48},{31,50},{32,20},{33,53},{34,55},{35,22},{36,58},{37,23},{38,61},{39,63},{40,25},
    {41,66},{42,26},{43,69},{44,71},{45,28},{46,74},{47,76},{48,30},{49,79},{50,31},{51,82},{52,84},{53,33},{54,87},{55,34},{56,90},{57,92},{58,36},{59,95},{60,97},
    {61,38},{62,100},{63,39},{64,103},{65,105},{66,41},{67,108},{68,110},{69,43},{70,113},{71,44},{72,116},{73,118},{74,46},{75,121},{76,47},{77,124},{78,126},{79,49},{80,129},
    {81,131},{82,51},{83,134},{84,52},{85,137},{86,139},{87,54},{88,142},{89,144},{90,56},{91,147},{92,57},{93,150},{94,152},{95,59},{96,155},{97,60},{98,158},{99,160},{100,62},
    {101,163},{102,165},{103,64},{104,168},{105,65},{106,171},{107,173},{108,67},{109,176},{110,68},{111,179},{112,181},{113,70},{114,184},{115,186},{116,72},{117,189},{118,73},{119,192},{120,194},
    {121,75},{122,197},{123,199},{124,77},{125,202},{126,78},{127,205},{128,207},{129,80},{130,210},{131,81},{132,213},{133,215},{134,83},{135,218},{136,220},{137,85},{138,223},{139,86},{140,226},
    {141,228},{142,88},{143,231},{144,89},{145,234},{146,236},{147,91},{148,239},{149,241},{150,93},{151,244},{152,94},{153,247},{154,249},{155,96},{156,252},{157,254},{158,98},{159,257},{160,99},
    {161,260},{162,262},{163,101},{164,265},{165,102},{166,268},{167,270},{168,104},{169,273},{170,275},{171,106},{172,278},{173,107},{174,281},{175,283},{176,109},{177,286},{178,288},{179,111},{180,291},
    {181,112},{182,294},{183,296},{184,114},{185,299},{186,115},{187,302},{188,304},{189,117},{190,307},{191,309},{192,119},{193,312},{194,120},{195,315},{196,317},{197,122},{198,320},{199,123},{200,323},
    {201,325},{202,125},{203,328},{204,330},{205,127},{206,333},{207,128},{208,336},{209,338},{210,130},{211,341},{212,343},{213,132},{214,346},{215,133},{216,349},{217,351},{218,135},{219,354},{220,136},
    {221,357},{222,359},{223,138},{224,362},{225,364},{226,140},{227,367},{228,141},{229,370},{230,372},{231,143},{232,375},{233,377},{234,145},{235,380},{236,146},{237,383},{238,385},{239,148},{240,388},
    {241,149},{242,391},{243,393},{244,151},{245,396},{246,398},{247,153},{248,401},{249,154},{250,404},{251,406},{252,156},{253,409},{254,157},{255,412},{256,414},{257,159},{258,417},{259,419},{260,161},
    {261,422},{262,162},{263,425},{264,427},{265,164},{266,430},{267,432},{268,166},{269,435},{270,167},{271,438},{272,440},{273,169},{274,443},{275,170},{276,446},{277,448},{278,172},{279,451},{280,453},
    {281,174},{282,456},{283,175},{284,459},{285,461},{286,177},{287,464},{288,178},{289,467},{290,469},{291,180},{292,472},{293,474},{294,182},{295,477},{296,183},{297,480},{298,482},{299,185},{300,485},
    {301,487},{302,187},{303,490},{304,188},{305,493},{306,495},{307,190},{308,498},{309,191},{310,501},{311,503},{312,193},{313,506},{314,508},{315,195},{316,511},{317,196},{318,514},{319,516},{320,198},
    {321,519},{322,521},{323,200},{324,524},{325,201},{326,527},{327,529},{328,203},{329,532},{330,204},{331,535},{332,537},{333,206},{334,540},{335,542},{336,208},{337,545},{338,209},{339,548},{340,550},
    {341,211},{342,553},{343,212},{344,556},{345,558},{346,214},{347,561},{348,563},{349,216},{350,566},{351,217},{352,569},{353,571},{354,219},{355,574},{356,576},{357,221},{358,579},{359,222},{360,582},
    {361,584},{362,224},{363,587},{364,225},{365,590},{366,592},{367,227},{368,595},{369,597},{370,229},{371,600},{372,230},{373,603},{374,605},{375,232},{376,608},{377,233},{378,611},{379,613},{380,235},
    {381,616},{382,618},{383,237},{384,621},{385,238},{386,624},{387,626},{388,240},{389,629},{390,631},{391,242},{392,634},{393,243},{394,637},{395,639},{396,245},{397,642},{398,246},{399,645},{400,647},
    {401,248},{402,650},{403,652},{404,250},{405,655},{406,251},{407,658},{408,660},{409,253},{410,663},{411,665},{412,255},{413,668},{414,256},{415,671},{416,673},{417,258},{418,676},{419,259},{420,679},
    {421,681},{422,261},{423,684},{424,686},{425,263},{426,689},{427,264},{428,692},{429,694},{430,266},{431,697},{432,267},{433,700},{434,702},{435,269},{436,705},{437,707},{438,271},{439,710},{440,272},
    {441,713},{442,715},{443,274},{444,718},{445,720},{446,276},{447,723},{448,277},{449,726},{450,728},{451,279},{452,731},{453,280},{454,734},{455,736},{456,282},{457,739},{458,741},{459,284},{460,744},
    {461,285},{462,747},{463,749},{464,287},{465,752},{466,754},{467,289},{468,757},{469,290},{470,760},{471,762},{472,292},{473,765},{474,293},{475,768},{476,770},{477,295},{478,773},{479,775},{480,297},
    {481,778},{482,298},{483,781},{484,783},{485,300},{486,786},{487,301},{488,789},{489,791},{490,303},{491,794},{492,796},{493,305},{494,799},{495,306},{496,802},{497,804},{498,308},{499,807},{500,809},
    {501,310},{502,812},{503,311},{504,815},{505,817},{506,313},{507,820},{508,314},{509,823},{510,825},{511,316},{512,828},{513,830},{514,318},{515,833},{516,319},{517,836},{518,838},{519,321},{520,841},
    {521,322},{522,844},{523,846},{524,324},{525,849},{526,851},{527,326},{528,854},{529,327},{530,857},{531,859},{532,329},{533,862},{534,864},{535,331},{536,867},{537,332},{538,870},{539,872},{540,334},
    {541,875},{542,335},{543,878},{544,880},{545,337},{546,883},{547,885},{548,339},{549,888},{550,340},{551,891},{552,893},{553,342},{554,896},{555,898},{556,344},{557,901},{558,345},{559,904},{560,906},
    {561,347},{562,909},{563,348},{564,912},{565,914},{566,350},{567,917},{568,919},{569,352},{570,922},{571,353},{572,925},{573,927},{574,355},{575,930},{576,356},{577,933},{578,935},{579,358},{580,938},
    {581,940},{582,360},{583,943},{584,361},{585,946},{586,948},{587,363},{588,951},{589,953},{590,365},{591,956},{592,366},{593,959},{594,961},{595,368},{596,964},{597,369},{598,967},{599,969},{600,371},
    {601,972},{602,974},{603,373},{604,977},{605,374},{606,980},{607,982},{608,376},{609,985},{610,987},{611,378},{612,990},{613,379},{614,993},{615,995},{616,381},{617,998},{618,382},{621,384},{624,386},
    {626,387},{629,389},{631,390},{634,392},{637,394},{639,395},{642,397},{645,399},{647,400},{650,402},{652,403},{655,405},{658,407},{660,408},{663,410},{665,411},{668,413},{671,415},{673,416},{676,418},
    {679,420},{681,421},{684,423},{686,424},{689,426},{692,428},{694,429},{697,431},{700,433},{702,434},{705,436},{707,437},{710,439},{713,441},{715,442},{718,444},{720,445},{723,447},{726,449},{728,450},
    {731,452},{734,454},{736,455},{739,457},{741,458},{744,460},{747,462},{749,463},{752,465},{754,466},{757,468},{760,470},{762,471},{765,473},{768,475},{770,476},{773,478},{775,479},{778,481},{781,483},
    {783,484},{786,486},{789,488},{791,489},{794,491},{796,492},{799,494},{802,496},{804,497},{807,499},{809,500},{812,502},{815,504},{817,505},{820,507},{823,509},{825,510},{828,512},{830,513},{833,515},
    {836,517},{838,518},{841,520},{844,522},{846,523},{849,525},{851,526},{854,528},{857,530},{859,531},{862,533},{864,534},{867,536},{870,538},{872,539},{875,541},{878,543},{880,544},{883,546},{885,547},
    {888,549},{891,551},{893,552},{896,554},{898,555},{901,557},{904,559},{906,560},{909,562},{912,564},{914,565},{917,567},{919,568},{922,570},{925,572},{927,573},{930,575},{933,577},{935,578},{938,580},
    {940,581},{943,583},{946,585},{948,586},{951,588},{953,589},{956,591},{959,593},{961,594},{964,596},{967,598},{969,599},{972,601},{974,602},{977,604},{980,606},{982,607},{985,609},{987,610},{990,612},
    {993,614},{995,615},{998,617}
};

bool vist[1100][1100];

void Init()
{
    vis[2][1]=vis[1][2]=1;
    vis[0][0]=vis[3][3]=-1;
    vis[4][2]=vis[2][4]=0;
    for(int i=9; i<=2000; i+=3)
    {
        for(int j=2; 2*j<=i; j++)
        {
            if(i-j>1000||j>1000) continue;
            int s1=-vis[j-2][i-j-1];
            int s2=-vis[j-1][i-j-2];
            vis[j][i-j]=vis[i-j][j]=max(s1,s2);
        }
    }
}

int main()
{


    int ty,n,m;

    int T;

    Init();

    for(int i = 0; i<762; i++)
    {
        vist[SG[i][0]][SG[i][1]] = true;
    }

    scanf("%d",&T);

    while(T-- && scanf("%d %d %d",&ty,&n,&m))
    {
        if(ty == 1)
        {
            if(n%2 ==0 || m%2 ==0)
            {
                printf("B\n");
            }
            else printf("G\n");
        }
        else if(ty ==4)
        {
            if(vist[n][m])
            {
                printf("G\n");
            }
            else printf("B\n");
        }
        else if(ty == 3)
        {
            if((n+m-2)%3!=0)
            {
                printf("D\n");
            }
            else
            {
                if(vis[n-1][m-1] == -1)
                {
                    printf("G\n");
                }
                else if(vis[n-1][m-1] == 0)
                {
                    printf("D\n");
                }
                else printf("B\n");
            }
        }
        else if(ty ==2)
        {
            if(n == m)
            {
                printf("G\n");
            }
            else printf("B\n");
        }
    }
    return 0;
}

Gambler Bo


Time Limit: 8000/4000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)

Special Judge

Problem Description

Gambler Bo is very proficient in a matrix game.

You have a N×M matrix, every cell has a value in {0,1,2}.

In this game, you can choose a cell in the matrix, plus 2 to this cell, and plus 1 to all the adjacent cells.

for example, you choose the cell (x,y), the value of (x,y) will be plused 2, and the value of (x−1,y)(x+1,y)(x,y−1)(x,y+1) will be plused 1.

if you choose the cell (1,2), the cell (1,2) will be plused 2, and the cell (2,2)(1,1)(1,3) will be plused 1, the cell (0,2) won’t be changed because it’s out of the matrix.

If the values of some cells is exceed 2, then these values will be modulo 3.

Gambler Bo gives you such a matrix, your task is making all value of this matrix to 0 by doing above operations no more than 2NM times.

Input

First line, an integer T. There are T test cases.

In each test, first line is two integers N,M, and following N lines describe the matrix of this test case.

T≤10,1≤N,M≤30, the matrix is random and guarantee that there is at least one operation solution.

Output

For each test, first line contains an integer num(0≤num≤2NM) describing the operation times.

Following num lines, each line contains two integers x,y(1≤x≤N,1≤y≤M) describing the operation cell.

The answer may not be unique, you can output any one.

Sample Input

2
2 3
2 1 2
0 2 0
3 3
1 0 1
0 1 0
1 0 1

Sample Output

1
1 2
5
1 1
1 3
2 2
3 1
3 3

题意:给你一个格子地图,在每一次选中一个格子,这个格子就会增加2,相邻的格子增加1,(格子中的数mod 3),问需要多少次才能使得格子中的数全部为0。高斯消元的模板题,也没有什么坑。

#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <string>
#include <queue>
#include <stack>
#include <algorithm>

using namespace std;

const int Max =1000;

int a[Max][Max];

bool vis[Max];

int x[Max];

int Free[Max];

int num;

void Gauss(int n)
{
    memset(vis,false,sizeof(vis));

    for(int row= 0 ,col = 0 ;row<n && col < n ; row++ ,col ++)
    {
        int r = row;

        for(int i = row;i<n;i++)
        {
            if(a[i][col])
            {
                r = i;

                break;
            }
        }

        if(a[r][col] == 0)
        {
            row --;

            vis[col] = true;

            continue;
        }

        for(int i = col;i<=n;i++)
        {
            swap(a[r][i],a[row][i]);
        }

        for(int i = row + 1;i<n;i++)
        {
            if(a[i][col])
            {
                int x1 = a[row][col];

                int x2 = a[i][col];

                for(int j = col;j<=n;j++)
                {
                    a[i][j] = a[i][j]*x1-a[row][j]*x2;

                    a[i][j] = (a[i][j]%3+3)%3;
                }
            }
        }
    }

    memset(x,0,sizeof(x));

    for(int i = n-1;i>=0;i--)
    {
        if(vis[i]) continue;

        int temp = a[i][n];

        for(int j = i+1;j<n;j++)
        {
            temp = ((temp-a[i][j]*x[j])%3+3)%3;
        }
        while(temp%a[i][i])
        {
            temp +=3;
        }

        x[i] = ((temp/a[i][i])%3+3)%3;
    }
}

int n,m;

void Init()
{
    memset(a,0,sizeof(a));

    for(int i = 0;i<n;i++)
    {
        for(int j =0;j<m;j++)
        {
            if(i>0) a[(i-1)*m+j][(i*m+j)] =1;

            if(j>0) a[i*m+j-1][(i*m+j)] = 1;

            if(i<n-1) a[(i+1)*m+j][i*m+j] = 1;

            if(j<m-1) a[(i*m+j+1)][i*m+j] = 1;

            a[i*m+j][i*m+j] = 2;
        }
    }
}

int main()
{
    int T;

    scanf("%d",&T);

    while(T--)
    {
        scanf("%d %d",&n,&m);

        Init();

        for(int i = 0;i<n;i++)
        {
            for(int j =0;j<m;j++)
            {
                scanf("%d",&a[i*m+j][n*m]);

                a[i*m+j][n*m] = (3-a[i*m+j][n*m])%3;
            }
        }


        Gauss(n*m);

        int ans =0 ;

        for(int i = 0;i<n*m;i++)
        {
            ans+=x[i];
        }
        printf("%d\n",ans);

        for(int i = 0;i<n*m;i++)
        {
            for(int j = 0;j<x[i];j++)
            {
                printf("%d %d\n",i/m+1,i%m+1);
            }
        }
    }
    return 0;
}

HDU【5761】——Rower Bo


Time Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)

Special Judge

Problem Description

There is a river on the Cartesian coordinate system,the river is flowing along the x-axis direction.

Rower Bo is placed at (0,a) at first.He wants to get to origin (0,0) by boat.Boat speed relative to water is v1,and the speed of the water flow is v2.He will adjust the direction of v1 to origin all the time.

Your task is to calculate how much time he will use to get to origin.Your answer should be rounded to four decimal places.

If he can’t arrive origin anyway,print”Infinity”(without quotation marks).

Input

There are several test cases. (no more than 1000)

For each test case,there is only one line containing three integers a,v1,v2.

0≤a≤100, 0≤v1,v2,≤100, a,v1,v2 are integers

Output

For each test case,print a string or a real number.

If the absolute error between your answer and the standard answer is no more than 10−4, your solution will be accepted.

Sample Input

2 3 3
2 4 3

Sample Output

Infinity
1.1428571429

比赛的时候队友竟然根据样例枚举出公式,表示很服

#include <iostream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <string>
#include <queue>
#include <stack>
#include <algorithm>

using namespace std;



int main()
{
    int a,v1,v2;

    while(~scanf("%d %d %d",&a,&v1,&v2))
    {
        if(a == 0)
        {
            printf("0\n");

            continue;

        }
        if(v1<=v2)
        {
            printf("Infinity\n");
        }
        else
        {
            printf("%.10f\n",v1*a*1.0/(v1*v1-v2*v2));
        }
    }
    return 0;
}

HDU【5762】——Teacher Bo


Time Limit: 4000/2000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)
Problem Description

Teacher BoBo is a geography teacher in the school.One day in his class,he marked N points in the map,the i-th point is at (Xi,Yi).He wonders,whether there is a tetrad (A,B,C,D)(A < B,C < D,A≠CorB≠D) such that the manhattan distance between A and B is equal to the manhattan distance between C and D.

If there exists such tetrad,print “YES”,else print “NO”.

Input

First line, an integer T. There are T test cases.(T≤50)
In each test case,the first line contains two intergers, N, M, means the number of points and the range of the coordinates.(N,M≤105).

Next N lines, the i-th line shows the coordinate of the i-th point.(Xi,Yi)(0≤Xi,Yi≤M).

Output

T lines, each line is “YES” or “NO”.

Sample Input

2
3 10
1 1
2 2
3 3
4 10
8 8
2 3
3 3
4 4

Sample Output

YES
NO

求所给的点中的曼哈顿距离是不是有相等的。由于结果只有 2×105 种,所以可以放心的暴力

#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <vector>
#include <algorithm>

using namespace std;

struct node
{
    int x,y;

    bool operator < (const node &a)
    {
        return x==a.x?y<a.y:x<a.y;
    }

    double operator - (const node &a) const
    {
        return abs(x-a.x)+abs(y-a.y);
    }

    bool operator == (const node &a) const
    {
        return (x==a.x && y==a.y);
    }
}arr[110000];

bool vis[210000];

int main()
{
    int T;

    int n,m;

    scanf("%d",&T);

    while(T--)
    {
        scanf("%d %d",&n,&m);

        for(int i = 0;i<n;i++)
        {
            scanf("%d %d",&arr[i].x,&arr[i].y);
        }

        memset(vis,false,sizeof(vis));

        bool flag = false;

        for(int i = 0;i<n;i++)
        {
            for(int j = i+1;j<n;j++)
            {
                int ans = arr[i]-arr[j];

                if(vis[ans])
                {
                    flag = true;


                    break;
                }

                vis[ans] = true;
            }

            if(flag) break;
        }

        if(flag) printf("YES\n");

        else printf("NO\n");
    }

    return 0;
}
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值