codeforces题目之390 A. Inna and Alarm Clock

题目

A. Inna and Alarm Clock
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard 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:

  1. First Inna chooses a type of segments that she will use throughout the game. The segments can be either vertical or horizontal.
  2. 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 xi, yi — 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.

Examples
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.

题目理解

这道题给了一个100x100的房间,设定以左下角为原点(0,0),给出一系列坐标为闹钟所在位置。首先Inna选择一个方向,横向或者纵向,然后Inna选择一个坐标,在选定的方向走多步,遇到闹钟则会关掉。求Inna最少需要选择多少个坐标。

解题思路

这算是一道贪婪题目,横纵方向只能选一次,则要么是横向,要么纵向,Inna一次可以走多步,所以在同一横纵方向上的所有坐标都视为一次选择。通过每个坐标的横纵坐标,获取每种横纵坐标的个数,其最小值则为Inna的最小选择值。

代码如下(python)

a = int(input().strip())
v = set()
h = set()
for i in range(a):
    cnt = [int(x) for x in input().strip().split(' ')]
    v.add(cnt[0])
    h.add(cnt[1])
print(min(len(v), len(h)))

代码解析

v = set()

选择set数据结构,因为set会自动除重,所以相同的坐标只会被计算一次。

Codeforces Round 894 (Div. 3) 是一个Codeforces举办的比赛,是第894轮的Div. 3级别比赛。它包含了一系列题目,其中包括题目E. Kolya and Movie Theatre。 根据题目描述,E. Kolya and Movie Theatre问题要求我们给定两个字符串,通过三种操作来让字符串a等于字符串b。这三种操作分别为:交换a中相同位置的字符、交换a中对称位置的字符、交换b中对称位置的字符。我们需要先进行一次预处理,替换a中的字符,然后进行上述三种操作,最终得到a等于b的结果。我们需要计算预处理操作的次数。 根据引用的讨论,当且仅当b[i]==b[n-i-1]时,如果a[i]!=a[n-i-1],需要进行一次操作;否则不需要操作。所以我们可以遍历字符串b的前半部分,判断对应位置的字符是否与后半部分对称,并统计需要进行操作的次数。 以上就是Codeforces Round 894 (Div. 3)的简要说明和题目E. Kolya and Movie Theatre的要求。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* [Codeforces Round #498 (Div. 3) (A+B+C+D+E+F)](https://blog.csdn.net/qq_46030630/article/details/108804114)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *3* [Codeforces Round 894 (Div. 3)A~E题解](https://blog.csdn.net/gyeolhada/article/details/132491891)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值