Zzu-question A of the month of October November 16, 2014

Source: Internet
Author: User

Zzu-question A of the month of October November 16, 2014

1228: Simple MoleculesTime Limit: 1 Sec Memory Limit: 128 MB
Submit: 22 Solved: 8
[Submit] [Status] [Web Board] Description

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 a, B, c (1 <= a, B, c <= 1 ^ 6) ----- 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 ).

Sample Input1 1 23 4 54 1 1 Sample Output0 1 11 3 2 ImpossibleHINT

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.

Source

CF


Q: Is it possible to form a chemical bond?


Idea: first determine whether it can become a chemical bond (called using a fun function), and then store bonds between 1, 2, 2, 3, 3, and 1, when saving bonds, You can first determine the number of chemical keys of the first two atoms!


AC code:

#include 
 
  #include 
  
   #include #define max3(a,b,c) max(max(a,b),c)using namespace std;int fun(int a[], int b[]){b[0] = a[0], b[1] = a[1], b[2] = a[2];sort(b, b+3);if(b[0]+b[1] < b[2]) return 0;else if(b[0]+b[1] >= b[2] && (b[0]+b[1]+b[2])%2==0) return 1;return 0;}int main(){int a[3], b[3];while(scanf("%d %d %d", &a[0], &a[1], &a[2])!=EOF){int t = fun(a, b);int bond[3]={0};if(t == 0){printf("Impossible\n");continue;}else if(t == 1){while(a[0]+a[1]!=a[2]){a[0]--;a[1]--;bond[0]++;}bond[1] = a[1]; bond[2] = a[0];}printf("%d %d %d\n", bond[0], bond[1], bond[2]);} return 0;}
  
 




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.