Life2Coding
URI ONLINE JUDGE SOLUTION : 1016 – Distance (BEGINNER PROBLEM)

Problem Summary:

Problem Number: 1016
Problem Name: Distance
Author’s Name: Adapted by Neilor Tonin, URI Brazil
Timelimit: 1
Problem Category: BEGINNER
Problem Source: https://www.urionlinejudge.com.br/judge/en/problems/view/1016

Some Talks about Contest Programming:

An incredible method to enhance your abilities when figuring out how to code is by solving coding problems. Solving different kinds of challenges and riddles can enable you to improve as a problem solver, take in the complexities of a programming dialect, get ready for prospective job interviews, learn new algorithms and more.

An online judge is an online platform to test programs in focused programming challenges. They are likewise used to practice for such challenges. A considerable amount of these platforms also arrange their own programming contests.

10 Steps to Solve Any Problems:

  1. Read the problem completely at least two or three times (or however many makes you feel comfortable)
  2. Identify the subject, the problem belongs to. Is it a sorting or pattern matching problem? Can I use graph theory? Is it related to number theory? etc.
  3. Try to solve the problem manually by considering 3 or 4 sample data sets.
  4. After concentrate on optimizing the manual steps. Try to make it as simple as possible.
  5. Write to write pseudo-code and comments besides the code from the manual steps. One thing you can do is to check after every function is written. Use a good IDE with a debugger, if possible. Don’t need to think much about the syntax. Just focus on the logic and steps.
  6. Replace the comments or pseudo-code with real code. Always check if the values and code are behaving as expected before moving to the new line of pseudo-code.
  7. Then optimize the real code.
  8. Take care of boundary conditions as well.
  9. Get feedback from your teammates, professors, and other developers and also ask your question on Stack Overflow if possible. Try to learn from others’ guidelines and what they are handling those problems. A problem may be solved in several ways. So, don’t get disappointed if you can’t think like an expert. You need to stick to the problem and you will gradually become better and quicker in solving problems like others.
  10. Practice, Practice, and Practice.

N.B: Try to follow the above steps always. If you still can’t get the problem solved, take a look at the solution below. Don’t just copy paste the code. It will kill your creativity. Try to enjoy contest programming and develop your skills.

Solution:

#include <iostream>
#include <stdio.h>

int main(){
    
    int a;
    
    std::cin >> a;
    
    printf("%d minutosn", (a*60)/30);
    return 0;
}

N.B.: Code is Collected from Different Sources

life2coding_icon [] URI ONLINE JUDGE SOLUTION : 1016 - Distance (BEGINNER PROBLEM)

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.