AOJ0541 Walk

問題文
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=0541

その交差点を何回通ったかが分かれば,その偶奇でどちらに進むかが分かる.
例えば現在いる場所を赤として,次に向かう場所を青,さらにをそこに通る回数を5とする.

東の場合は,東に3回行き,南に2回行く.
南の場合は,東に2回行き,南に3回行く.
通る回数が偶数の場合はどちらに行く回数も同じである.
よって初期地点

これで通った回数が分かったので,に出るまで進む.

Code

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <algorithm>
#include <sstream>
#include <map>
#include <set>

#define REP(i,k,n) for(int i=k;i<n;i++)
#define rep(i,n) for(int i=0;i<n;i++)
#define INF 1<<30
#define pb push_back
#define mp make_pair

using namespace std;
typedef long long ll;
typedef pair<int,int> P;

int h, w, n;
int dp[1005][1005];

int main() {
  while(cin >> h >> w >> n) {
      if(h == 0 && w == 0 && n == 0) break;

      vector< vector<int> > v(h, vector<int>(w));
      rep(i, h) {
          rep(j, w) {
              cin >> v[i][j];
          }
      }

      memset(dp, 0, sizeof(dp));
      dp[0][0] = n;

      rep(i, h) {
          rep(j, w) {
              int s = dp[i][j] / 2;
              int t = dp[i][j] - s;

              if(v[i][j] % 2 == 1) {
                  dp[i][j+1] += t;
                  dp[i+1][j] += s;
              } else {
                  dp[i+1][j] += t;
                  dp[i][j+1] += s;
              }
          }
      }

      int y = 0, x = 0;
      while(y != h && x != w) {
          if(v[y][x] == 1) {
              if(dp[y][x] % 2 == 1) {
                  x++;
              } else {
                  y++;
              }
          } else {
              if(dp[y][x] % 2 == 1) {
                  y++;
              } else {
                  x++;
              }
          }
      }

      cout << y + 1 << " " << x + 1 << endl;
      // rep(i, h) {
      //     rep(j, w) {
      //         cout << dp[i][j] << " ";
      //     }
      //     cout << endl;
      // }
  }

  return 0;
}
Feb 10th, 2016