Codeforces Round #229 (Div. 2)A. Inna and Alarm Clock

A. Inna and Alarm Clock
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Inna loves sleeping very much, so she needs n alarm clocks in total to wake up. Let's suppose that Inna's room is a 100 × 100 square with the lower left corner at point (0, 0) and with the upper right corner at point (100, 100). Then the alarm clocks are points with integer coordinates in this square.

The morning has come. All n alarm clocks in Inna's room are ringing, so Inna wants to turn them off. For that Inna has come up with an amusing game:

  • First Inna chooses a type of segments that she will use throughout the game. The segments can be either vertical or horizontal.
  • Then Inna makes multiple moves. In a single move, Inna can paint a segment of any length on the plane, she chooses its type at the beginning of the game (either vertical or horizontal), then all alarm clocks that are on this segment switch off. The game ends when all the alarm clocks are switched off.

Inna is very sleepy, so she wants to get through the alarm clocks as soon as possible. Help her, find the minimum number of moves in the game that she needs to turn off all the alarm clocks!

Input

The first line of the input contains integer n (1 ≤ n ≤ 105) — the number of the alarm clocks. The next n lines describe the clocks: the i-th line contains two integers xiyi — the coordinates of the i-th alarm clock (0 ≤ xi, yi ≤ 100).

Note that a single point in the room can contain any number of alarm clocks and the alarm clocks can lie on the sides of the square that represents the room.

Output

In a single line print a single integer — the minimum number of segments Inna will have to draw if she acts optimally.

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

In the first sample, Inna first chooses type "vertical segments", and then she makes segments with ends at : (0, 0)(0, 2); and, for example, (1, 0)(1, 1). If she paints horizontal segments, she will need at least 3 segments.

In the third sample it is important to note that Inna doesn't have the right to change the type of the segments during the game. That's why she will need 3 horizontal or 3 vertical segments to end the game.


解題報告:

此題題意就是她只能每次橫着關鬧鐘或者每次都是豎着關鬧鐘。我們只要統計橫着關鬧鐘需要幾次,豎着關鬧鐘需要幾次,取少的那個即可。代碼如下:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int s[110][110];
int main(){
    int n,a,b,flag;
    memset(s,0,sizeof(s));
    scanf("%d",&n);
    for(int i=0;i<n;i++){
        scanf("%d%d",&a,&b);
        s[a][b]=1;
    }
    int t1,t2,num1,num2;
    t1=t2=n;
    num1=num2=0;
    for(int i=0;i<110;i++){
        flag=0;
        for(int j=0;j<110;j++){
            if(s[i][j]==1){
                flag=1;
                t1--;
            }
        }
        if(flag)
            num1++;
        if(t1==0)
            break;
    }
    for(int i=0;i<110;i++){
        flag=0;
        for(int j=0;j<110;j++){
            if(s[j][i]==1){
                flag=1;
                t2--;
            }
        }
        if(flag)
            num2++;
        if(t2==0)
            break;
    }
    printf("%d\n",min(num1,num2));
    return 0;
}


發佈了168 篇原創文章 · 獲贊 3 · 訪問量 12萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章