zoukankan      html  css  js  c++  java
  • B. Simple Molecules

    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output
     

    Mad scientist Mike is busy carrying out experiments in chemistry. Today he will attempt to join three atoms into one molecule.

    A molecule consists of atoms, with some pairs of atoms connected by atomic bonds. Each atom has a valence number — the number of bonds the atom must form with other atoms. An atom can form one or multiple bonds with any other atom, but it cannot form a bond with itself. The number of bonds of an atom in the molecule must be equal to its valence number.

    Mike knows valence numbers of the three atoms. Find a molecule that can be built from these atoms according to the stated rules, or determine that it is impossible.

    Input

    The single line of the input contains three space-separated integers ab and c (1 ≤ a, b, c ≤ 106) — the valence numbers of the given atoms.

    Output

    If such a molecule can be built, print three space-separated integers — the number of bonds between the 1-st and the 2-nd, the 2-nd and the 3-rd, the 3-rd and the 1-st atoms, correspondingly. If there are multiple solutions, output any of them. If there is no solution, print "Impossible" (without the quotes).

    Examples
    input
    1 1 2
    output
    0 1 1
    input
    3 4 5
    output
    1 3 2
    input
    4 1 1
    output
    Impossible
    Note

    The first sample corresponds to the first figure. There are no bonds between atoms 1 and 2 in this case.

    The second sample corresponds to the second figure. There is one or more bonds between each pair of atoms.

    The third sample corresponds to the third figure. There is no solution, because an atom cannot form bonds with itself.

    The configuration in the fourth figure is impossible as each atom must have at least one atomic bond.

    水题 求3个原子是否能构成一个分子使化学键和法。

    总共的化学键为(a+b+c)/2个,则只要判断各原子间化学键是否成立即可。

    附AC代码:

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int main(){
     5     int a,b,c;
     6     cin>>a>>b>>c;
     7     int t=(a+b+c)/2;
     8     int ans=0;
     9     int a1,a2,a3;
    10     int flag=0;
    11     for(int i=1;i<a;i++){
    12         a1=i,a3=a-a1,a2=t-a;
    13         if(a1+a2==b&&a2+a3==c){
    14             flag=1;
    15             break;
    16         }
    17     }
    18     if(flag==0){
    19         for(int i=1;i<b;i++){
    20         a1=i,a2=b-a1,a3=t-b;
    21         if(a1+a3==a&&a2+a3==c){
    22             flag=1;
    23             break;
    24         }
    25         }
    26     }
    27     if(flag==0){
    28         for(int i=1;i<c;i++){
    29         a3=i,a2=c-a3,a1=t-c;
    30         if(a1+a3==a&&a2+a1==b){
    31             flag=1;
    32             break;
    33         }
    34         }
    35     }
    36     if(flag&&a1>=0&&a2>=0&&a3>=0){
    37         cout<<a1<<" "<<a2<<" "<<a3<<endl;
    38     }
    39     else{
    40         cout<<"Impossible"<<endl;
    41     }
    42     return 0;
    43 } 
  • 相关阅读:
    程序用windows快捷键
    vc6中如何加入BMP图片资源
    vc 中解析字符串
    视频压缩编码问与答
    ActiveX and Com
    Windows 2000 IIS 安装、配置.WEB篇
    javascript 如何调用activex的方法和属性
    bmp 转为jpg
    Writing a Custom Membership Provider for the Login Control in ASP.NET 2.0
    几种DC及区别
  • 原文地址:https://www.cnblogs.com/Kiven5197/p/5908591.html
Copyright © 2011-2022 走看看