zoukankan      html  css  js  c++  java
  • 寒假刷题之4——机械化表面?

     Machined Surfaces 

    An imaging device furnishes digital images of two machined surfaces that eventually will be assembled in contact with each other. The roughness of this final contact is to be estimated.

    A digital image is composed of the two characters, "X" and " " (space). There are always 25 columns to an image, but the number of rows,N, is variable. Column one (1) will always have an "X" in it and will be part of the left surface. The left surface can extend to the right from column one (1) as contiguous X's.

    Similarly, column 25 will always have an "X" in it and will be part of the right surface. The right surface can extend to the left from column 25 as contiguous X's.

    Digital-Image View of Surfaces

     
    		 Left     		                           Right
    

    XXXX XXXXX tex2html_wrap_inline50

    XXX XXXXXXX

    XXXXX XXXX

    XX XXXXXX

    . .

    . .

    . .

    XXXX XXXX

    XXX XXXXXX tex2html_wrap_inline52

    tex2html_wrap_inline54 tex2html_wrap_inline56

    1 25

    In each row of the image, there can be zero or more space characters separating the left surface from the right surface. There will never be more than a single blank region in any row.

    For each image given, you are to determine the total ``void" that will exist after the left surface has been brought into contact with the right surface. The ``void" is the total count of the spaces that remains between the left and right surfaces after theyhave been brought into contact.

    The two surfaces are brought into contact by displacing them strictly horizontally towards each other until a rightmost "X" of the left surface of some row is immediately to the left of the leftmost "X" of the right surface of that row. There is no rotation or twisting of these two surfaces as they are brought into contact; they remain rigid, and only move horizontally.

    Note: The original image may show the two surfaces already in contact, in which case no displacement enters into the contact roughness estimation.

    Input

    The input consists of a series of digital images. Each image data set has the following format:

    First line -

    A single unsigned integer, N, with value greater than zero (0) and less than 13. The first digit of N will be the first character on a line.

    Next N lines -

    Each line has exactly 25 characters; one or more X's, then zero or more spaces, then one or more X's.

    The end of data is signaled by a null data set having a zero on the first line of an image data set and no further data.

    Output

    For each image you receive as a data set, you are to reply with the total void (count of spaces remaining after the surfaces are brought into contact). Use the default output for a single integer on a line.

    Sample Input (character "B" for ease of reading. The actual input file will use the ASCII-space character, not "B").

    4

    XXXXBBBBBBBBBBBBBBBBXXXXX

    XXXBBBBBBBBBBBBBBBXXXXXXX

    XXXXXBBBBBBBBBBBBBBBBXXXX

    XXBBBBBBBBBBBBBBBBBXXXXXX

    2

    XXXXXXXXXXXXXXXXXXXXXXXXX

    XXXXXXXXXXXXXXXXXXXXXXXXX

    1

    XXXXXXXXXBBBBBBBBBBBBBBXX

    0

    Sample Output

    4

    0

    0


      好长的英文。。。借助有道词典慢慢看吧。。。
      我再也不相信有道了,翻译出来是人说的话吗(本来就不是),还是google好用,虽然我还是不太理解,至少容易看多了。。。
      英语学得不好挺惭愧,没办法求助度娘,有好多人都刷过这题了,真是前人栽树后人乘凉啊:

        本题比较水,没什么技术含量,关键就在于理解题意。一大篇的英文,让人看了就头疼,最悲剧的还有许多单词不认识……

        题目的大致意思是:首先输入一个数字N,代表接下来要输入几行字符串;

        每行字符串的格式为:由字母X和空格 (“ ”)组成,且两边是字符X,中间是空格。每行的开始有一个或多个X,中间有0个或多个空格,末端有一个或多个X。

        要求:将N行中的左边的字符X同时向右移动(或右边的字符X向左移动),直到有一行中间没有空格时停止所有行的移动,此时计算N行中总共有多少个空格。

        注意:(1)给出的测试数据XXXXBBBBBBBBBBBBBBBBXXXXX中的字母‘B’是代表空格的意思,因为如果给出空格,你很难看出中间有多少个空格;给出‘B’,一眼就能看出空格的个数。每行的第一个位置没有空格,即左边的X前面没有空格。题目中就给出这句“character "B" for ease of reading. The actual input file will use the ASCII-space character, not "B"”,意思是:字符‘B’是为了阅读的方便,真正的输入文件将会使用标准的ASCII码中的空格字符,不是'B'。

              (2)程序中不能使用scanf函数输入字符串,因为scanf遇到空格、Tab、换行就结束读取,而本题中的字符串要求中间有0个或多个字符串。推荐使用fgets函数。

              (3)本题要求以N为0结束输出,所以你的程序要有当N=0时退出的语句。

      好吧非常水。。。

      编了。。。如下:
    #include<stdio.h>
    
    int main()
    {
    	int i, j, n, zero[100] = {0}, result = 0, min;
    	char temp;
    	
    	scanf("%d", &n);
    	for (; n != 0;){
    		min = 25;
    		for (j = 0; j < n; j ++){
    			for (i = 0; i < 25; i ++)
    				if (getchar() == ' ')
    					zero[j] ++;
    			if (zero[j] < min)
    				min = zero[j];
    		}
    		for (j = 0; j < n; j ++)
    			result += zero[j] - min;
    		printf("%d\n", result);
    		temp = getchar();
    		scanf("%d", &n);
    	}
    	
    	return 0;
    }

       提交后runtime error。。。奇怪了,我调试的好好的,网上查了一下说是数组越界了,数组开的不够大。。。我改大点提交看看,好吧wrong answer了。。。(另外收集了一篇常见OJ评判结果对照表

       太晚了,老妈叫我下去了,明天继续搞。。。顺便看了下一题,很有趣的样子,明天再弄。。。


       今天继续搞。。。
    #include<stdio.h>
    
    int main()
    {
    	int i, j, n, zero[100] = {0}, result, min;
    	char temp;
    	
    	scanf("%d", &n);
    	for (i = 0; i < n; i++){
    		temp = getchar();
    		min = 25;
    		result = 0;
    		for (j = 0; j < n; j ++){
    			while ((temp = getchar()) != '\n')
    				if (temp == ' ')
    					zero[j] ++;
    			if (zero[j] < min)
    				min = zero[j];
    		}
    		for (j = 0; j < n; j ++)
    			result += zero[j] - min;
    		printf("%d\n", result);
    		scanf("%d", &n);
    	}
    	
    	return 0;
    }

         搞什么又wa了。。。。火大。
       我准备参考别人答案了,嘿嘿。他们的思路跟我不一样, 有的计算出全部的空格和最少的空格再进行计算,有的一行一行求出X的个数再进行计算,貌似没有像我这样做的,果然是我太弱了吗orz。。。
       好吧我错了。。。我没有认真地调试,原来里面各种错误。。。我都不忍心把错误代码贴出来了,惨不忍睹。。。贴出来让以后的我有个教训吧。。。
       终于ac好开心,贴出代码:
    #include<stdio.h>
    
    int main()
    {
    	int n, j;
    	char temp;
    
    	while (scanf("%d", &n)){
    		int zero[100] = {0}, result = 0, min = 25;
    		if (n == 0)
    			break;
    		temp = getchar();
    		for (j = 0; j < n; j ++){
    			while ((temp = getchar()) != '\n')
    				if (temp == ' ')
    					zero[j] ++;
    			if (zero[j] < min)
    				min = zero[j];
    		}
    		for (j = 0; j < n; j ++)
    			result += zero[j] - min;
    		printf("%d\n", result);
    	}
    	return 0;
    }


       还是用我的思路来写,这次共花了4个小时以上来搞这题(里面包含qq和微博聊天时间⊙﹏⊙b汗)。。。
       总结一下吧:1.写代码太不专心,老是被qq微博什么的干扰到,速度太慢怎么短的代码竟然编那么长时间。2.没有用心地去调试,这毛病太严重了,如果在比赛中不知道要被扣多少时间。3.老喜欢依赖度娘,自己方面还没有认真搞好就想找度娘,太惭愧了。。。4.对了还有一个,那就是英文要学好!
       血粼粼的教训啊,以后要注意了。。。ok,继续据说很有趣的下一题了。。。

    
    
  • 相关阅读:
    跟着我学习-python-01-流程控制语句
    跟着我学习-python-01-用户交互
    跟着我学习-python-02-while循环
    基于Centos7.6上Ambari2.7.4+HDP3.1.4离线安装
    TDH(Transwarp Data Hub)社区版安装教程
    跟我学习日常写的shell脚本-设置系统selinux
    [Linux]常用命令“ll”失效或命令未找到
    NPOI
    Linq&lamda相关
    接口相关
  • 原文地址:https://www.cnblogs.com/java20130723/p/3212216.html
Copyright © 2011-2022 走看看