zoukankan      html  css  js  c++  java
  • 【乱搞】【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; 
    }
    
  • 相关阅读:
    Redis过期机制
    vim使用
    ex command in Linux with examples
    【转】Linux 文档编辑 : ex 命令详解
    vscode go语言环境搭建
    golang slice a 的地址和a[0]的地址不一样
    文件加锁,作用是用来做什么?以及使用细节
    文件锁
    go创建指定大小的文件,获取文件大小
    go 实现内存映射和进程间通信
  • 原文地址:https://www.cnblogs.com/ahu-shu/p/3519650.html
Copyright © 2011-2022 走看看