Codeforces Round #434 (Div. 2, based on Technocup 2018 Elimination Round 1)&&Codeforces 861B Which floor?【枚举,暴力】
B. Which floor?
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?
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.
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.
10 3
6 2
2 1
7 3
4
8 4
3 1
6 2
5 2
2 1
-1
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 }
作 者:Angel_Kitty
出 处:https://www.cnblogs.com/ECJTUACM-873284962/
关于作者:阿里云ACE,目前主要研究方向是Web安全漏洞以及反序列化。如有问题或建议,请多多赐教!
版权声明:本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接。
特此声明:所有评论和私信都会在第一时间回复。也欢迎园子的大大们指正错误,共同进步。或者直接私信我
声援博主:如果您觉得文章对您有帮助,可以点击文章右下角【推荐】一下。您的鼓励是作者坚持原创和持续写作的最大动力!
欢迎大家关注我的微信公众号IT老实人(IThonest),如果您觉得文章对您有很大的帮助,您可以考虑赏博主一杯咖啡以资鼓励,您的肯定将是我最大的动力。thx.
我的公众号是IT老实人(IThonest),一个有故事的公众号,欢迎大家来这里讨论,共同进步,不断学习才能不断进步。扫下面的二维码或者收藏下面的二维码关注吧(长按下面的二维码图片、并选择识别图中的二维码),个人QQ和微信的二维码也已给出,扫描下面👇的二维码一起来讨论吧!!!
欢迎大家关注我的Github,一些文章的备份和平常做的一些项目会存放在这里。