hiho week 66 register

Ended

Participants:488

Verdict:Accepted
Score:100 / 100
Submitted:2015-10-07 22:46:12

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream> 
#include <stdio.h> 
#include <stdlib.h> 
#include <vector>
#include <map>
#include <string>
#include <queue>
#include <algorithm> 
#include <limits>
using namespace std;
int n, m;
const int N = 100;
const int M = 100;
char str[N+1][M+1];
int dd[N + 1][M + 1];
int direction[4][2] = {{ -1, 0 },  { 0, -1 }, { 0, 1 }, { 1, 0 }};
int direction2[3][2] = { { 0, 1 }, { 1, 0 } };
#define INT_MAX 2147483647
int main()
{
    scanf("%d %d", &n, &m);
    for (int i = 0; i < n; ++i)
        for (int j = 0; j < m; ++j)
            dd[i][j] = INT_MAX;
    for (int i = 0; i < n; ++i)
        scanf("\n%s", str[i]);
    int a, b;
    for (int i = 0; i < n; ++i)
        for (int j = 0; j < m; ++j)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX