Problem Solution Template: Difference between revisions

From programming_contest
Jump to navigation Jump to search
imported>Rubens
No edit summary
imported>Kmk21
m 12 revisions imported
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Problem Solution Template ==
= Introduction =
*[[midatl2014]]


=== Tags ===
This problem asks you to do foo with bar.


=== Difficulty ===
= 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 ===
=== How to ===


=== Sample Solution - *Language X* ===
The code was done this way.
 
=== Solution - *Language X* ===
<syntaxhighlight lang="cpp">
#include <stdio.h>
 
int main()
{
    printf ("Hello Word!");
    return 0;
}
</syntaxhighlight>


<code> Hello word! </code>
= Super Epic Fails =


=== Super Epic Fails ===
It would be really easy to make this mistake or that mistake


=== ICPC Problems===
= Tags =
*[[BFS]]
*[[Dynamic Programming]]

Latest revision as of 19:03, 31 January 2015

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