Problem Solution Template: Difference between revisions

From programming_contest
Jump to navigation Jump to search
imported>Rubens
No edit summary
imported>Kmk21
No edit summary
Line 1: Line 1:
== Introduction ==
= Introduction =
*[[midatl2014]]


This problem is beeeatiful.
This problem asks you to do foo with bar.


*ICPC CONTEST LINK
= Difficulty =
 
==Algorithmic==
== Difficulty ==
This problem was crazy hard to understand and come up with a solution==
 
==Implementation==
And hard.
This problem was super easy to implement
 
= Solutions=
== Solution N (by X) ==
== Solution Using foo and X with Bob and alice algorithm ==


=== Idea ===
=== Idea ===


I had an idea!
I had an idea! I thought of using bob and foo because of XYZ.


=== How to ===
=== How to ===


I wrote a code!
The code was done this way.


=== Solution - *Language X* ===
=== Solution - *Language X* ===
<syntaxhighlight lang="cpp">
#include <stdio.h>


1  #include <stdio.h>
int main()
{
3  '''int''' main()
    printf ("Hello Word!");
{
    return 0;
5      printf ("Hello Word!");
}
6      '''return''' 0;
</syntaxhighlight>
}
 
== Super Epic Fails ==


I am a turtle!
= Super Epic Fails =


== Tags ==
It would be really easy to make this mistake or that mistake


*Beautiful
= Tags =
*Hard
*[[BFS]]
*Turtle
*[[Dynamic Programming]]

Revision as of 02:24, 11 November 2014

Introduction

This problem asks you to do foo with bar.

Difficulty

Algorithmic

This problem was crazy hard to understand and come up with a solution==

Implementation

This problem was super easy to implement

Solutions

Solution Using foo and X with Bob and alice algorithm

Idea

I had an idea! I thought of using bob and foo because of XYZ.

How to

The code was done this way.

Solution - *Language X*

#include <stdio.h>

int main()
{
    printf ("Hello Word!");
    return 0;
}

Super Epic Fails

It would be really easy to make this mistake or that mistake

Tags