zoukankan      html  css  js  c++  java
  • PAT甲级——A1091 Acute Stroke【30】

    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.

    figstroke.jpg

    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 }
  • 相关阅读:
    SharePoint Server 2007 Beta2 Technical Refresh 安装提示
    SharePoint Server安全工具:Forefront for SharePoint
    7月6日,深圳OTEC成员会议
    数据字典存储事件实例
    C#学习:事件
    发布符合 .NET Framework 准则的事件
    ASP.NET缓存:用户控件缓存
    C#中用ToString方法格式化时间
    C#学习:委托
    实现接口事件
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11348949.html
Copyright © 2011-2022 走看看