首页 > 试题广场 >

Acute Stroke (30)

[编程题]Acute Stroke (30)
  • 热度指数:5485 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 640M,其他语言1280M
  • 算法知识视频讲解
One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysis in which the core regions are identified in each MRI slice, your job is to calculate the volume of the stroke core.

输入描述:
Each input file contains one test case.  For each case, the first line contains 4 positive integers: M, N, L and T, where M and N are the sizes of each slice (i.e. pixels of a slice are in an M by N matrix, and the maximum resolution is 1286 by 128); L (<=60) is the number of slices of a brain; and T is the integer threshold (i.e. if the volume of a connected core is less than T, then that core must not be counted).
Then L slices are given. Each slice is represented by an M by N matrix of 0's and 1's, where 1 represents a pixel of stroke, and 0 means normal. Since the thickness of a slice is a constant, we only have to count the number of 1's to obtain the volume. However, there might be several separated core regions in a brain, and only those with their volumes no less than T are counted. Two pixels are "connected" and hence belong to the same region if they share a common side, as shown by Figure 1 where all the 6 red pixels are connected to the blue one.

Figure 1


输出描述:
For each case, output in a line the total volume of the stroke core.
示例1

输入

3 4 5 2
1 1 1 1
1 1 1 1
1 1 1 1
0 0 1 1
0 0 1 1
0 0 1 1
1 0 1 1
0 1 0 0
0 0 0 0
1 0 1 1
0 0 0 0
0 0 0 0
0 0 0 1
0 0 0 1
1 0 0 0

输出

26
头像 懒散之魂
发表于 2021-09-12 16:47:52
我的个人小站 题目 OJ平台 题目翻译 题目描述 原文One important factor to identify acute stroke (急性脑卒中) is the volume of the stroke core. Given the results of image analysi 展开全文

问题信息

难度:
25条回答 11087浏览

热门推荐

通过挑战的用户