2

作者: OorangeZ | 来源:发表于2018-12-07 16:44 被阅读0次

George and Accommodation
Problem Description:George has recently entered the BSUCP (Berland State University for Cool Programmers). George has a friend Alex who has also entered the university. Now they are moving into a dormitory.
George and Alex want to live in the same room. The dormitory hasnrooms in total. At the moment thei-th room haspipeople living in it and the room can accommodateqipeople in total (pi≤qi). Your task is to count how many rooms has free place for both George and Alex.
Input:The first line contains a single integern(1 ≤n≤ 100)— the number of rooms.
Thei-th of the nextnlines contains two integerspiandqi(0 ≤pi≤qi≤ 100)— the number of people who already live in thei-th room and the room's capacity.
Output:Print a single integer — the number of rooms where George and Alex can move in.
Examples
Input
3
1 1
2 2
3 3
Output
0
Input
3
1 10
0 10
10 10
Output
2
问题链接:https://vjudge.net/problem/CodeForces-467A
问题简述:输入总宿舍数量,输入宿舍已有人数和宿舍总可居住人数,判断剩余可居住人数是否大于2
问题分析:利用二维数组存储数据,判断数据之差是否大于2,循环总数量次,求出可选房间数总和。
AC通过的C++语言程序如下:

#include <iostream>
using namespace std;
int main()
{
    int num;
    cin >> num;
    int **p = new int*[num];
    for (int i = 0; i < num; i++)
    {
        p[i] = new int[2];
    }//相当于声明了一个p[mun][2]二维数组
    int a = 0, b = 0;
    int sl;
    while (cin >> sl)
    {
        p[a][b] = sl;
        b++;
        if (b == 2)
        {
            b = 0;
            a++;
        }
        if (a == num)
            break;
    }
    int fj = 0;
    for (int i = 0; i < num; i++)
    {
        if (p[i][1] - p[i][0] >= 2)
        {
            fj++;
        }
    }
    cout << fj;
}

相关文章

  • DAY 2(2/2)

    五彩滩声名在外,但是我们去的时候在休整,我们十分不甘心,根据各种攻略告诉我们在景区出口有村民守着问你要不要去五彩滩...

  • 2-2-2

    自由写作群 转化与蜕变 继续刚才的梦的后记 我想梦是用最形象的比喻告诉我内在正在经历着发生着什么,这是潜意识里已经...

  • 2 (2)

    突然想到Jenny ,那个有些神经质的女孩儿。 对我来说,Jenny 给我最深的印象是作家。作为一个作家,她的灵感...

  • 2-2-2 RelativeLayout

    标注:本文为个人整理,仅做自己学习参考使用,请勿转载和转发2018-06-03: 初稿,参考博主coder-pig...

  • 2️⃣0️⃣2️⃣0️⃣🔚🔜2️⃣0️⃣2️⃣1️⃣

    今天风小了,夕阳很平静,但2020年终究是不平静的一年。 不平静的2020年,第一次有了一张小区出入证。不能飞去热...

  • 2-2

    ❤️起步,️️(若起步的右车道前方无车,可以不用转到左车道; 转发了右车道一定要变更车道) 一段车程 ❤️右转,右...

  • < маленький принц > 2-2

    Итак, в первый вечер я уснул на песке в пустыне, где на...

  • 2-2

    悠闲的一天。

  • 2-2

    翠绿幽篁浴暖阳 仄仄平平仄仄平 笛声绕耳浸心房 平平仄仄仄平平 鲜闻繁琐劳神事 平平仄仄平平仄 袅袅香茗伴月尝 仄...

  • 2018/2/2

    一,今天我改正了什么: 按计划,按时间点做事,过了再挤别的时间做。 二,今天我抵制了什么: 别人对我的不认可 三,...

网友评论

      本文标题:2

      本文链接:https://www.haomeiwen.com/subject/eozthqtx.html