PAT甲级——A1091 Acute Stroke30

Posted zzw1024

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT甲级——A1091 Acute Stroke30相关的知识,希望对你有一定的参考价值。

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.

Input Specification:

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×N matrix, and the maximum resolution is 1286 by 128); L (≤) 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×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

Output Specification:

For each case, output in a line the total volume of the stroke core.

Sample Input:

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

Sample Output:

26


 1 #include <iostream>
 2 #include <queue>
 3 using namespace std;
 4 struct Node
 5 
 6     int x, y, z;
 7     Node(int xx, int yy, int zz) :x(xx), y(yy), z(zz) 
 8 ;
 9 int M, N, L, T, res = 0;
10 int direct[6][3] =  -1,0,0,1,0,0,0,-1,0,0,1,0,0,0,-1,0,0,1 ;
11 bool G[1300][130][70];//遍历记录
12 int BFS(Node p)
13 
14     int num = 0;
15     queue<Node>q;
16     q.push(p);
17     G[p.x][p.y][p.z] = false;
18     while (!q.empty())
19     
20         p = q.front();
21         q.pop();
22         ++num;
23         for (int i = 0; i < 6; ++i)
24         
25             int x = p.x + direct[i][0];
26             int y = p.y + direct[i][1];
27             int z = p.z + direct[i][2];
28             if (x < M && x >= 0 && y >= 0 && y < N && z >= 0 && z <= L && G[x][y][z])
29             
30                 q.push(Node(x, y, z));
31                 G[x][y][z] = false;
32             
33         
34     
35     return num;
36 
37 int main()
38 
39     cin >> M >> N >> L >> T;
40     for (int k = 0; k < L; ++k)
41         for (int i = 0; i < M; ++i)
42             for (int j = 0; j < N; ++j)
43                 cin >> G[i][j][k];
44     for(int i=0;i<M;++i)
45         for(int j=0;j<N;++j)
46             for(int k=0;k<L;++k)
47                 if (G[i][j][k])
48                 
49                     int temp = BFS(Node(i, j, k));
50                     if (temp >= T)
51                         res += temp;
52                 
53     cout << res << endl;
54     return 0;
55 

 

以上是关于PAT甲级——A1091 Acute Stroke30的主要内容,如果未能解决你的问题,请参考以下文章

PAT甲级1091 Acute Stroke (30分)

PAT甲级——1091 Acute Stroke (广度优先搜索BFS)

(刷算法学英语)PAT甲级--Acute Stroke(三维空间的bfs)

A1091 Acute Stroke (30分)

PAT 1091 Acute Stroke [难][bfs]

PAT1091:Acute Stroke