ens-ulm-1-2015

google hashcode 2015 source for team ens-ulm-1
git clone https://a3nm.net/git/ens-ulm-1-2015/
Log | Files | Refs

commit cbeb07cbe07c28eaf5bd85e881e13cc28a6a54e4
parent 74be339f15351b75ab22f6923a7138b4dc2007e2
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Sat, 28 Mar 2015 10:53:08 +0100

contest

Diffstat:
contest/a3nm/main.cpp | 28++++++++++++++++++++++++++++
1 file changed, 28 insertions(+), 0 deletions(-)

diff --git a/contest/a3nm/main.cpp b/contest/a3nm/main.cpp @@ -0,0 +1,28 @@ +#include <vector> +#include <cstdio> +#include <algorithm> +#include <map> +#include <time.h> + +using namespace std; + +#define MAXN 200 + +int R, C, H, S; +char pizz[MAXN][MAXN]; // row, col + +vector<int> size; +vector<vector<int> > G; +vector<int> r1; +vector<int> c1; +vector<int> r2; +vector<int> c2; +vector<int> ham; + +int main(int argc, char **argv) { + scanf("%d%d%d%d", &R, &C, &H, &S); + + return 0; +} + +