• 【乱搞】【AOJ-186】Color Me Less


    Description
    A color reduction is a mapping from a set of discrete colors to a smaller one. The solution to this problem requires that you perform just such a mapping in a standard twenty-four bit RGB color space. The input consists of a target set of sixteen RGB color values, and a collection of arbitrary RGB colors to be mapped to their closest color in the target set. For our purposes, an RGB color is defined as an ordered triple (R,G,B) where each value of the triple is an integer from 0 to 255. The distance between two colors is defined as the Euclidean distance between two three-dimensional points. That is, given two colors (R1,G1,B1) and (R2,G2,B2), their distance D is given by the equation


    Input
    The input is a list of RGB colors, one color per line, specified as three integers from 0 to 255 delimited by a single space. The first sixteen colors form the target set of colors to which the remaining colors will be mapped. The input is terminated by a line containing three -1 values.
    Output
    For each color to be mapped, output the color and its nearest color from the target set.

    If there are more than one color with the same smallest distance, please output the color given first in the color set.

    Sample Input
    0 0 0
    255 255 255
    0 0 1
    1 1 1
    128 0 0
    0 128 0
    128 128 0
    0 0 128
    126 168 9
    35 86 34
    133 41 193
    128 0 128
    0 128 128
    128 128 128
    255 0 0
    0 1 0
    0 0 0
    255 255 255
    253 254 255
    77 79 134
    81 218 0
    -1 -1 -1
    

     
    Sample Output
    (0,0,0) maps to (0,0,0)
    (255,255,255) maps to (255,255,255)
    (253,254,255) maps to (255,255,255)
    (77,79,134) maps to (128,128,128)
    (81,218,0) maps to (126,168,9)
    

    题目大意是求光的距离?(英语渣)根据公式暴搜就行了。。

    参考代码:
    #include <stdio.h> 
    int main() 
    { 
        //freopen("data.in","r",stdin); 
        //freopen("data.out","w",stdout); 
        int a,b,c,cmp[16][3],i,j; 
        for(i=0;i<16;i++) 
            scanf("%d%d%d",&cmp[i][0],&cmp[i][1],&cmp[i][2]); 
        while(scanf("%d%d%d",&a,&b,&c)&&(a!=-1&&b!=-1&&c!=-1)) 
        { 
            int temp,min,_a=a,_b=b,_c=c; 
            min=-1; 
            for(i=0;i<16;i++) 
            { 
                temp=(a-cmp[i][0])*(a-cmp[i][0])+(b-cmp[i][1])*(b-cmp[i][1])+(c-cmp[i][2])*(c-cmp[i][2]); 
                if(min<0||min>temp) 
                { 
                    min=temp; 
                    j=i; 
                } 
            } 
            printf("(%d,%d,%d) maps to (%d,%d,%d)
    ",a,b,c,cmp[j][0],cmp[j][1],cmp[j][2]); 
        } 
          
        return 0; 
    }
    
  • 相关阅读:
    visio画UML用例图没有include关系的解决方法
    个人推荐-几款好用的App
    win10锁屏壁纸文件夹Assets中无文件问题的解决方法
    云服务器搭建Jupyter-主要部分为配置服务器安全组+添加python3
    开通博客的第一天
    express学习(二)—— Post()类型和中间件
    自定义模块
    命名参数名(含*args , * *kw的区别)
    Python学习之中文注释问题
    Python学习之再议row_input
  • 原文地址:https://www.cnblogs.com/ahu-shu/p/3519650.html
Copyright © 2020-2023  润新知