HDU2317: Nasty Hacks

Source: Internet
Author: User

Problem Description
You are the CEO of Nasty Hacks Inc., a company that creates small pieces of malicious software which teenagers may use
To fool their friends. the company has just finished their first product and it is time to wait it. you want to make as much money as possible and consider advertising in order to increase sales. you get an analyst to predict the expected revenue, both with and without advertising. you now want to make a demo-as to whether you shoshould advertise or not, given the expected revenues.


 


Input
The input consists of n cases, and the first line consists of one positive integer giving n. the next n lines each contain 3 integers, r, e and c. the first, r, is the expected revenue if you do not advertise, the second, e, is the expected revenue if you do advertise, and the third, c, is the cost of advertising. you can assume that the input will follow these restrictions:-106 ≤ r, e ≤ 106 and 0 ≤ c ≤ 106.
 


Output
Output one line for each test case: "advertise", "do not advertise" or "does not matter", presenting whether it is most profitable to advertise or not, or whether it does not make any difference.
 


Sample Input
3
0 100 70
100 130 30
-100-70 40


Sample Output
Advertise
Does not matter
Do not advertise

 

Every day.

[Cpp]
# Include <stdio. h>
 
Int main ()
{
Int t;
Scanf ("% d", & t );
While (t --)
{
Int r, e, c;
Scanf ("% d", & r, & e, & c );
If (e-c> r)
Printf ("advertise \ n ");
Else if (e-c = r)
Printf ("does not matter \ n ");
Else if (e-c <r)
Printf ("do not advertise \ n ");
}
 
Return 0;
}

# Include <stdio. h>

Int main ()
{
Int t;
Scanf ("% d", & t );
While (t --)
{
Int r, e, c;
Scanf ("% d", & r, & e, & c );
If (e-c> r)
Printf ("advertise \ n ");
Else if (e-c = r)
Printf ("does not matter \ n ");
Else if (e-c <r)
Printf ("do not advertise \ n ");
}

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.