Array - Official House

分发自HZK's Blog(全平台分发)
本文标题: Array – Official House
本文链接地址: https://blog.zekun.fun/2020/%e7%bc%96%e7%a8%8b/c-cpp/412/

题目描述

You manage 4 buildings, each of which has 3 floors, each of which consists of 10 rooms. Write a program which reads a sequence of tenant/leaver notices, and reports the number of tenants for each room.
For each notice, you are given four integers b, f, r and v which represent that v persons entered to room r of fth floor at building b. If v is negative, it means that v persons left.
Assume that initially no person lives in the building.

输入

In the first line, the number of notices n is given. In the following n lines, a set of four integers b, f, r and v which represents ith notice is given in a line.

输出

For each building, print the information of 1st, 2nd and 3rd floor in this order. For each floor information, print the number of tenants of 1st, 2nd, .. and 10th room in this order. Print a single space character before the number of tenants. Print “####################” (20 ‘#’) between buildings.

#include 
using namespace std;
int B[4][3][10];
int main() {
    int n,b, f, r, v;   
    cin >> n;
    while (n--) {
        cin >> b >> f >> r >> v;
        B[b - 1][f - 1][r - 1] += v;
    }
    for (int i = 0; i < 4; i++) {
        for (int j = 0; j < 3; j++) {
            for (int k = 0; k < 10; k++) {
                cout <<" ";
                cout << B[i][j][k];
            }
            cout << endl;
        }
        if (i < 3) {
            cout << "####################" << endl;
        }
    }
    return 0;
}

你可能感兴趣的:(c++,acm)