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 }
  • 相关阅读:
    浅析深度优先和广度优先遍历实现过程、区别及使用场景
    浅析为什么要用setTimeout模拟setInterval
    app弹出软键盘获取键盘高度不准确的原因及导致底部定位的元素无法贴近键盘的问题
    App平台iOS设备上因内存不足导致白屏、闪退的原因及其解决方案
    浅谈移动端开发技术
    浅析Console命令调试常用方法
    js正则表达式中的正向肯定预查和正向否定预查, 反向肯定和反向否定(这个翻译不准确)
    javascript的版本查看及js的历史
    【转】JS-正则表达式的反向引用
    【转】Linux虚拟网络设备之tun/tap
  • 原文地址:https://www.cnblogs.com/zzw1024/p/11348949.html
Copyright © 2011-2022 走看看