Codeforces Round #434 (Div. 2, based on Technocup 2018 Elimination Round 1)&&Codeforces 861B Which floor?【枚举,暴力】

B. Which floor?

time limit per test:1 second
memory limit per test:256 megabytes
input:standard input
output:standard output

In a building where Polycarp lives there are equal number of flats on each floor. Unfortunately, Polycarp don't remember how many flats are on each floor, but he remembers that the flats are numbered from 1 from lower to upper floors. That is, the first several flats are on the first floor, the next several flats are on the second and so on. Polycarp don't remember the total number of flats in the building, so you can consider the building to be infinitely high (i.e. there are infinitely many floors). Note that the floors are numbered from 1.

Polycarp remembers on which floors several flats are located. It is guaranteed that this information is not self-contradictory. It means that there exists a building with equal number of flats on each floor so that the flats from Polycarp's memory have the floors Polycarp remembers.

Given this information, is it possible to restore the exact floor for flat n?

Input

The first line contains two integers n and m (1 ≤ n ≤ 100, 0 ≤ m ≤ 100), where n is the number of the flat you need to restore floor for, and m is the number of flats in Polycarp's memory.

m lines follow, describing the Polycarp's memory: each of these lines contains a pair of integers ki, fi (1 ≤ ki ≤ 100, 1 ≤ fi ≤ 100), which means that the flat ki is on the fi-th floor. All values ki are distinct.

It is guaranteed that the given information is not self-contradictory.

Output

Print the number of the floor in which the n-th flat is located, if it is possible to determine it in a unique way. Print -1 if it is not possible to uniquely restore this floor.

Examples
Input
10 3
6 2
2 1
7 3
Output
4
Input
8 4
3 1
6 2
5 2
2 1
Output
-1
Note

In the first example the 6-th flat is on the 2-nd floor, while the 7-th flat is on the 3-rd, so, the 6-th flat is the last on its floor and there are 3 flats on each floor. Thus, the 10-th flat is on the 4-th floor.

In the second example there can be 3 or 4 flats on each floor, so we can't restore the floor for the 8-th flat.

题目链接:http://codeforces.com/contest/861/problem/B

分析:直接看代码吧,代码给出了详细注释!

下面给出AC代码:

复制代码
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 const int N=200;
 4 int n,m,cur=0,idx=0;;
 5 int should[N+10];
 6 inline void ok(int per)
 7 {
 8     int now=1,cnt=0;//now是当前的楼层,cnt是当前楼层的公寓数目
 9     int temp=1;
10     for(int dd=1;dd<=100;dd++)//枚举第dd间房子在哪里
11     {
12         cnt++;//当前楼层的公寓数目递增。
13         if(cnt>per)//如果公寓数目大于每层的楼层数
14         {
15             cnt=1;//进入下一层
16             now++;//楼层个数递增
17         }
18         if(should[dd]!=0&&should[dd]!=now)
19             return;
20         if(dd == n)
21             temp=now;
22         //如果dd公寓不应该在第now层,就结束
23     }
24     //是一个合法的分配
25     if(cur==0)//如果之前没有找到过合法的。
26     {
27         idx=temp;//第n个房子,它就在第now层
28         cur=1;//找到的解数目为1
29     }
30     else//数目大于0了 
31     {
32         if(cur==1)//如果只有一个解的话
33         {
34             if(idx==temp)//如果第n间房子的层数和当前一样,退出
35                 return;
36         }
37         cur++;//否则,答案递增。
38     }
39 }
40 int main(void)
41 {
42     cin>>n>>m;
43     for(int i=1;i<=m;i++)
44     {
45         int x,y;
46         cin>>x>>y;
47         should[x]=y;//x号公寓房子啊第y层
48     }
49     for(int i=1;i<=102;i++)//枚举每层有i间公寓
50         ok(i);
51     if(cur>1||cur==0)//如果解的个数太多,或没解。
52         cout<<-1;
53     else
54         cout<<idx;
55     return 0;
56 }
复制代码

 

posted @   Angel_Kitty  阅读(427)  评论(0编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· [AI/GPT/综述] AI Agent的设计模式综述
点击右上角即可分享
微信分享提示
哥伦布
14°
14:09发布
哥伦布
14:09发布
14°
大雨
南风
3级
空气质量
相对湿度
93%
今天
中雨
14°/19°
周日
中雨
5°/19°
周一
1°/11°