hiho week 66 register

Ended

Participants:488

Verdict:Accepted
Score:100 / 100
Submitted:2015-10-04 11:58:46

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 <vector>
#include <queue>
#include <limits.h>
using namespace std;
struct Spot {
    int row;
    int col;
    explicit Spot(int r = -1, int c = -1):row(r),col(c){}
};
int main(int argc, const char * argv[]) {
    // insert code here...
    int rowN, colN;
    cin>>rowN>>colN;
    vector<char>* map = new vector<char>[rowN];
    char aChar;
    int rowH = 0, colH = 0;
    for (int i = 0; i < rowN; i++) {
        for (int j = 0; j < colN; j++) {
            cin>>aChar;
            if ('H' == aChar) {
                rowH = i;
                colH = j;
            }
            map[i].push_back(aChar);
        }
    }
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX